Files
adsb-tools/beast.h

11 lines
193 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();
2016-02-17 16:40:09 -08:00
bool beast_parse(struct buf *, struct packet *, void *);
2016-02-17 18:01:39 -08:00
void beast_serialize(struct packet *, struct buf *);