compiler-lightning/include/args.h
2025-02-03 18:35:31 +13:00

13 lines
213 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