smol-gilbraltar/include/log.h
2024-12-23 01:46:17 +01:00

14 lines
318 B
C

#ifndef __GILBRALTAR_LOG__
#define __GILBRALTAR_LOG__
#include <stdarg.h>
#include <stddef.h>
#include <stdint.h>
enum log_level { ERROR = 0, WARN, INFO, DEBUG };
size_t gilbraltar_log(enum log_level, const char *fmt, ...)
__attribute__((format(printf, 2, 3)));
void gilbraltar_log_set(enum log_level);
#endif