Kernel/include/targp.h
2023-03-25 12:02:26 +02:00

16 lines
230 B
C

#ifndef TinyArgumentParser_H__
#define TinyArgumentParser_H__
#ifdef __cplusplus
extern "C"
{
#endif
void targp_parse(const char *cmd, char **argv, int *argc);
#ifdef __cplusplus
}
#endif
#endif // !TinyArgumentParser_H__