mirror of
https://github.com/augustin64/projet-tipe
synced 2025-01-24 15:36:25 +01:00
15 lines
322 B
C
15 lines
322 B
C
#include <stdio.h>
|
|
|
|
#include "include/colors.h"
|
|
|
|
void printf_error(char* string) {
|
|
printf(BOLDRED "[ ERROR ]" RESET " %s", string);
|
|
}
|
|
|
|
void printf_warning(char* string) {
|
|
printf(BOLDYELLOW "[WARNING]" RESET " %s", string);
|
|
}
|
|
|
|
void printf_info(char* string) {
|
|
printf(BOLDBLUE "[ INFO ]" RESET " %s", string);
|
|
} |