cli.h (139B)
1 /* 2 * cli.h -- cli() and optstring 3 */ 4 5 #ifndef CLI_H 6 #define CLI_H 7 8 extern const char* opts; 9 10 void cli(int, char**); 11 12 #endif /* CLI_H */ 13