Create the processor

This commit is contained in:
2023-07-02 20:56:25 +01:00
parent 6b27c86a18
commit 99063fc700
3 changed files with 145 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#ifndef PROC_ARGPARSER_H
#define PROC_ARGPARSER_H
#include "aliases.h"
struct ProcessorArgs {
const char *filepath;
};
ProcessorArgs parse_args(i32 argc, char *argv[]);
#endif // !PROC_ARGPARSER_H