9 lines
127 B
C
9 lines
127 B
C
#ifndef LOGER_H
|
|
#define LOGER_H
|
|
|
|
|
|
void error(char message[]);
|
|
void info(char message[]);
|
|
void warning(char message[]);
|
|
|
|
#endif
|