Files
adsb-tools/adsbus/raw.h
2016-02-18 09:36:53 -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 *);