diff options
author | Tim Segers <tsegers@pm.me> | 2022-12-23 18:44:58 +0100 |
---|---|---|
committer | Tim Segers <tsegers@pm.me> | 2022-12-23 18:44:58 +0100 |
commit | c0f2ea4176b967ba902bb5e0e5c4ee3f28530beb (patch) | |
tree | 85ad3c174ab645f4e43a7ac91b6df9f98af7ebc3 /src/opendeco-cli.h | |
parent | 14009b2ee28f763d343f1905a2da2092f8b61f0b (diff) | |
download | opendeco-c0f2ea4176b967ba902bb5e0e5c4ee3f28530beb.tar.gz |
Extract CLI handling into separate file
Diffstat (limited to 'src/opendeco-cli.h')
-rw-r--r-- | src/opendeco-cli.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/opendeco-cli.h b/src/opendeco-cli.h new file mode 100644 index 0000000..70aa3ce --- /dev/null +++ b/src/opendeco-cli.h @@ -0,0 +1,11 @@ +/* SPDX-License-Identifier: MIT-0 */ + +#ifndef OPENDECOCLI_H +#define OPENDECOCLI_H + +#include "opendeco-conf.h" + +/* functions */ +void opendeco_argp_parse(int argc, char *argv[], struct arguments *arguments); + +#endif /* end of include guard: OPENDECOCLI_H */ |