This commit is contained in:
anon
2025-01-23 09:41:36 +01:00
commit b3437f8f62
14 changed files with 1107 additions and 0 deletions

10
source/opts.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef OPTS_H
#define OPTS_H
#include <stddef.h>
#include <stdbool.h>
extern void get_env(void);
extern void parse_args(int argc, char * * argv);
#endif