13 lines
203 B
C
13 lines
203 B
C
#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
|