5 #include <ctu_argparse_api.h>
84 CT_ARGPARSE_API
int ap_parse(
ap_t *
self,
const char *str);
CT_ARGPARSE_API size_t ap_count_params(ap_t *self)
get the number of processed arguments
CT_ARGPARSE_API vector_t * ap_get_unknown(ap_t *self)
get all unknown arguments
CT_ARGPARSE_API void ap_event(ap_t *self, const cfg_field_t *param, ap_event_t callback, void *data)
add a callback event to a parameter
CT_ARGPARSE_API int ap_parse(ap_t *self, const char *str)
parse a string
CT_ARGPARSE_API int ap_parse_args(ap_t *self, int argc, const char **argv)
parse a command line
CT_ARGPARSE_API ap_t * ap_new(cfg_group_t *config, arena_t *arena)
create a new parser instance
CT_ARGPARSE_API void ap_update(ap_t *self)
update the parser with the latest config
CT_ARGPARSE_API vector_t * ap_get_posargs(ap_t *self)
get all positional arguments
bool(* ap_event_t)(ap_t *ap, const cfg_field_t *param, const void *value, void *data)
callback for a parameter event called when a parameter is parsed return true to indicate the event wa...
CT_ARGPARSE_API vector_t * ap_get_errors(ap_t *self)
get all errors
arena_t * arena
allocation arena
cfg_group_t * config
the root config group
a position in a source file
A vector with a fixed type size.
a generic vector of pointers