Samples/c/loger.h

10 lines
127 B
C
Raw Permalink Normal View History

2025-05-28 21:10:27 +02:00
#ifndef LOGER_H
#define LOGER_H
void error(char message[]);
void info(char message[]);
void warning(char message[]);
#endif