FIX: fixed missing prototype in .h file

This commit is contained in:
Dominik Meyer 2018-03-31 21:32:53 +02:00
parent d745a983af
commit afc822563c
No known key found for this signature in database
GPG Key ID: B4C312B600606B64
1 changed files with 1 additions and 0 deletions

View File

@ -144,6 +144,7 @@ struct arg_parse_ctx * argparse_init();
void argparse_free(struct arg_parse_ctx *ctx); ///< free the parsing context at program end
int argparse_add_command(struct arg_parse_ctx *ctx, struct arg_parse_cmd *cmd); ///< add a commandline command to the context
int argparse_add_string(struct arg_parse_ctx *ctx, struct arg_str *str); ///< add a string argument to the context
int argparse_add_flag(struct arg_parse_ctx *ctx, struct arg_flag *flag); ///< add a flag argument to the context
int argparse_parse(struct arg_parse_ctx *ctx,int argc, char **argv); ///< parse the given commandline in the context
#endif