4-space indent

This commit is contained in:
Benoit Jacob 2022-04-12 20:36:08 +00:00
parent 92fdf12e05
commit 10ad96c29e

View File

@ -68,24 +68,24 @@ bool IsStdoutATerminal() { return s_isStdoutATerminal; }
// Like printf, but if stdout is a terminal, prepends the output with // Like printf, but if stdout is a terminal, prepends the output with
// the given `ansiEscape` and appends ANSI_RESET. // the given `ansiEscape` and appends ANSI_RESET.
void AnsiPrintf( const char* ansiEscape, const char* format, ... ) { void AnsiPrintf( const char* ansiEscape, const char* format, ... ) {
if( IsStdoutATerminal() ) if( IsStdoutATerminal() )
{ {
// Prepend ansiEscape and append ANSI_RESET. // Prepend ansiEscape and append ANSI_RESET.
char buf[256]; char buf[256];
va_list args; va_list args;
va_start( args, format ); va_start( args, format );
vsnprintf( buf, sizeof buf, format, args ); vsnprintf( buf, sizeof buf, format, args );
va_end( args ); va_end( args );
printf( "%s%s" ANSI_RESET, ansiEscape, buf ); printf( "%s%s" ANSI_RESET, ansiEscape, buf );
} }
else else
{ {
// Just a normal printf. // Just a normal printf.
va_list args; va_list args;
va_start( args, format ); va_start( args, format );
vfprintf( stdout, format, args ); vfprintf( stdout, format, args );
va_end( args ); va_end( args );
} }
} }
[[noreturn]] void Usage() [[noreturn]] void Usage()