Typedefs | |
typedef enum etok_type_ | etok_type |
Enumerations | |
enum | etok_type_ { ETOK_SUCCESS, ETOK_REGCOMP, ETOK_MEMORY, ETOK_NOMATCH, ETOK_ESPACE } |
Functions | |
etok_type | tokenize (const char *pattern, const char *a_string, size_t *ntokens, char ***ptokens) |
void | free_tokens (size_t ntokens, char **tokens) |
|
enumeration of tokenize return codes |
|
enumeration of tokenize return codes
|
|
frees the array of tokens allocated and filled by tokenize |
|
a low-level function to parse 'a_string' using the regexp 'pattern', into an array of tokens (see below); essentially called by parse_argument
After this call :
|