liblog/liblog.h

14 lines
188 B
C

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