Files
adsb-tools/adsbus/airspy_adsb.h

11 lines
252 B
C
Raw Normal View History

2016-02-21 16:52:36 -08:00
#pragma once
#include <stdbool.h>
struct buf;
struct packet;
void airspy_adsb_init(void);
2016-02-26 14:09:37 -08:00
bool __attribute__ ((warn_unused_result)) airspy_adsb_parse(struct buf *, struct packet *, void *);
2016-02-21 16:52:36 -08:00
void airspy_adsb_serialize(struct packet *, struct buf *);