compiler-lightning/include/args.h
2024-07-22 23:31:54 +12:00

13 lines
No EOL
199 B
C

#ifndef __ARGS_H__
#define __ARGS_H__
typedef struct Args {
const char* input;
const char* output;
int build;
int comp_debug;
} Args;
Args parse_args(int argc, char** argv);
#endif