9 lines
173 B
C
9 lines
173 B
C
|
|
#ifndef LOG_H_
|
||
|
|
#define LOG_H_
|
||
|
|
|
||
|
|
extern void log(const char *format, ...);
|
||
|
|
extern void log_ok(const char *format, ...);
|
||
|
|
extern void log_fail(const char *format, ...);
|
||
|
|
|
||
|
|
#endif
|