liblog/liblog.h

13 lines
170 B
C
Raw Normal View History

2019-09-18 17:44:47 +02:00
#ifndef LLOG
#define LLOG
2019-09-18 18:27:57 +02:00
// Display a message in the log stream
2019-09-18 17:44:47 +02:00
void ll_log(const char * txt);
2019-09-18 18:27:57 +02:00
// Puts the 8 last lines of the stream
2019-09-18 17:44:47 +02:00
void ll_display_log();
#endif