Files
adsb-tools/beast.h
2016-02-17 18:01:39 -08:00

11 lines
193 B
C

#pragma once
#include <stdbool.h>
struct buf;
struct packet;
void beast_init();
bool beast_parse(struct buf *, struct packet *, void *);
void beast_serialize(struct packet *, struct buf *);