11 lines
240 B
C
11 lines
240 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
void log_init(void);
|
|
void log_cleanup(void);
|
|
bool log_reopen(const char *);
|
|
void log_write(char, const uint8_t *, const char *, ...)
|
|
__attribute__ ((__format__ (__printf__, 3, 4)));
|