histui/source/cli.hpp
2024-08-04 21:45:33 +02:00

12 lines
277 B
C++

#ifndef CLI_HPP
#define CLI_HPP
void parse_arguments(const int argc, const char * const * const argv);
extern void usage(void);
extern void version(void);
extern void enable(void);
extern void argument_yy_error(const char * const s);
extern int argument_yy_lex(void);
#endif