Files

17 lines
306 B
C
Raw Permalink Normal View History

2025-11-17 10:28:09 +01:00
#include "console.h"
void console_logColor( char * message, char * color ) {
if( strcmp( color, "green" ) == 0 ) {
printf( ANSI_COLOR_GREEN "%s" ANSI_COLOR_RESET, message );
} else if( strcmp( color, "yellow" ) == 0 ) {
printf( ANSI_COLOR_BRIGHT_YELLOW "%s" ANSI_COLOR_RESET, message );
}
}