mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-28 15:34:33 +00:00
16 lines
230 B
C
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__
|