fallout2-ce/src/args.h

16 lines
365 B
C
Raw Normal View History

2022-05-19 01:51:26 -07:00
#ifndef ARGS_H
#define ARGS_H
#include <stdbool.h>
typedef struct CommandLineArguments {
int argc;
char** argv;
} CommandLineArguments;
void argsInit(CommandLineArguments* commandLineArguments);
bool argsParse(CommandLineArguments* commandLineArguments, char* commandLine);
void argsFree(CommandLineArguments* commandLineArguments);
#endif /* ARGS_H */