mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-06-03 02:07:57 +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__
|