Files

9 lines
173 B
C
Raw Permalink Normal View History

#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