aboutsummaryrefslogtreecommitdiff
path: root/voerbak/argparse.h
blob: 243e81f0a6546c742aa125f24e2d2a0cc82c47a0 (plain)
1
2
3
4
5
6
7
8
9
/** @brief Used for storing arguments */
struct arguments {
	int width, height;
	char* solver;
	int verbosity;
};

/** @brief Parse arguments */
struct arguments argparse(int argc, char* argv[]);