fiatlux/firmware/log.h
jedi 60766a0c0b
Some checks failed
continuous-integration/drone/push Build is failing
stash
2023-02-12 12:19:08 +01:00

28 lines
375 B
C

//
// Created by jedi on 18.11.21.
//
#ifndef FIRMWARE_LOG_H
#define FIRMWARE_LOG_H
#ifdef __cplusplus
extern "C" {
#endif
void syslog(const char *);
unsigned syslog_current_tail();
unsigned syslog_data_after(unsigned);
int syslog_copy_out(char *, unsigned, unsigned);
void syslog_attach();
void syslog_detach();
#ifdef __cplusplus
}
#endif
#endif //FIRMWARE_LOG_H