Samples/c/loger.h
2025-05-28 21:10:27 +02:00

9 lines
127 B
C

#ifndef LOGER_H
#define LOGER_H
void error(char message[]);
void info(char message[]);
void warning(char message[]);
#endif