liblog/liblog.h

14 lines
188 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
void ll_send(const char * txt);
2019-09-18 18:27:57 +02:00
// Puts the 8 last lines of the stream
void ll_display();
2019-09-18 17:44:47 +02:00
void ll_set_panic();
2019-09-18 17:44:47 +02:00
#endif