Files
adsb-tools/adsbus/log.h

9 lines
188 B
C
Raw Normal View History

2016-03-05 22:54:26 -08:00
#pragma once
#include <stdint.h>
void log_init(void);
void log_cleanup(void);
void log_write(char, const uint8_t *, const char *, ...)
__attribute__ ((__format__ (__printf__, 3, 4)));