Files
adsb-tools/adsbus/proto.c
2016-02-23 15:19:56 -08:00

12 lines
216 B
C

#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) {
}