Files
adsb-tools/adsbus/proto.c

12 lines
216 B
C
Raw Normal View History

2016-02-23 15:19:56 -08:00
#include "buf.h"
#include "packet.h"
#include "proto.h"
bool proto_parse(struct buf *buf, struct packet *packet, void *state_in) {
return false;
}
void proto_serialize(struct packet *packet, struct buf *buf) {
}