Factor out opts parsing, clean up shutdown.

This commit is contained in:
Ian Gulliver
2016-02-20 23:22:00 -08:00
parent fe5fa29abf
commit 9df778a88a
10 changed files with 151 additions and 100 deletions

9
adsbus/opts.h Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#include <stdbool.h>
bool opts_add_dump(char *);
bool opts_add_connect_receive(char *);
bool opts_add_connect_send(char *);
bool opts_add_listen_receive(char *);
bool opts_add_listen_send(char *);