[v0.01] Update LICENSE and source code extensions

This commit is contained in:
Dr-Noob
2021-08-11 09:13:15 +02:00
parent 5e6c3cb965
commit f824e3c4f2
7 changed files with 8 additions and 8 deletions

19
src/common/args.hpp Normal file
View File

@@ -0,0 +1,19 @@
#ifndef __ARGS__
#define __ARGS__
#include <stdbool.h>
enum {
ARG_HELP,
ARG_VERSION
};
extern const char args_chr[];
extern const char *args_str[];
int max_arg_str_length();
bool parse_args(int argc, char* argv[]);
bool show_help();
bool show_version();
#endif