vxBoot/include/vxBoot/cli.h

15 lines
340 B
C

#ifndef __VXBOOT_PARSER_H__
# define __VXBOOT_PARSER_H__
#include <stddef.h>
#include <stdint.h>
/* cli_main() : main entry for the CLI */
extern void cli_main(void);
extern int cli_parser_strtotab(int *argc, char ***argv, char const *str);
extern void cli_parser_strtotab_quit(int *argc, char ***argv);
#endif /*__VXBOOT_PARSER_H__*/