compiler-lightning/include/args.h

13 lines
199 B
C
Raw Normal View History

2024-07-22 23:31:54 +12:00
#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