liblog/liblog.h

13 lines
170 B
C

#ifndef LLOG
#define LLOG
// Display a message in the log stream
void ll_log(const char * txt);
// Puts the 8 last lines of the stream
void ll_display_log();
#endif