2016-02-21 16:52:36 -08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
|
|
struct buf;
|
|
|
|
|
struct packet;
|
|
|
|
|
|
2016-02-25 23:37:37 -08:00
|
|
|
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 *);
|