Files
adsb-tools/raw.h
2016-02-17 20:14:44 -08:00

11 lines
187 B
C

#pragma once
#include <stdbool.h>
struct buf;
struct packet;
void raw_init();
bool raw_parse(struct buf *, struct packet *, void *);
void raw_serialize(struct packet *, struct buf *);