fxBoot/include/fxBoot/parser.h

11 lines
260 B
C
Raw Normal View History

2021-01-10 13:48:14 +01:00
#ifndef __FXBOOT_PARSER_H__
# define __FXBOOT_PARSER_H__
#include <stddef.h>
#include <stdint.h>
extern int parser_strtotab(int *argc, char ***argv, char const *str);
extern void parser_strtotab_quit(int *argc, char ***argv);
#endif /*__FXBOOT_PARSER_H__*/