Files
adsb-tools/adsbus/beast.h

11 lines
234 B
C
Raw Normal View History

2016-02-16 03:42:41 +00:00
#pragma once
#include <stdbool.h>
2016-02-17 16:40:09 -08:00
struct buf;
struct packet;
2016-02-16 03:42:41 +00:00
void beast_init(void);
2016-02-26 14:09:37 -08:00
bool __attribute__ ((warn_unused_result)) beast_parse(struct buf *, struct packet *, void *);
2016-02-17 18:01:39 -08:00
void beast_serialize(struct packet *, struct buf *);