Switch to standard logging framework

This commit is contained in:
Ian Gulliver
2016-03-05 22:54:26 -08:00
parent 06e73e2319
commit 6480a960fa
20 changed files with 102 additions and 67 deletions

7
adsbus/log.h Normal file
View File

@@ -0,0 +1,7 @@
#pragma once
#include <stdint.h>
void log_init(void);
void log_cleanup(void);
void log_write(char, const uint8_t *, const char *, ...);