From 7a2073c2ef8e3ee9538301043bd4b7fb3121a845 Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Sat, 18 Nov 2023 23:38:20 +0300 Subject: [PATCH] template.c: more manual formatting --- src/template.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/template.c b/src/template.c index 69b4442..2d97179 100644 --- a/src/template.c +++ b/src/template.c @@ -9,11 +9,11 @@ // constants #if defined(_WIN32) -#define __ANSI_CLEAR_STRING "\r" +# define __ANSI_CLEAR_STRING "\r" #elif defined(__unix__) || defined(__linux__) -#define __ANSI_CLEAR_STRING "\x1B[2K\r" +# define __ANSI_CLEAR_STRING "\x1B[2K\r" #else -#define __ANSI_CLEAR_STRING "\n" +# define __ANSI_CLEAR_STRING "\n" #endif const char* ANSI_CLEAR = __ANSI_CLEAR_STRING;