Lines Matching refs:argcount
37 * const char **splitstr(const char *str, const char *separator, int *argcount)
42 * strings is returned, along with argcount being set to the number of strings
45 * returned and argcount will be set to zero.
61 const char **splitstr(const char *str, const char *separator, int *argcount)
68 * In most recoverable errors, if argcount is not NULL,
69 * set argcount to 0. Then return NULL.
72 if (argcount != NULL)
73 *argcount = 0;
83 if (argcount != NULL)
84 *argcount = 0;
94 if (argcount != NULL)
95 *argcount = 0;
136 if (argcount != NULL)
137 *argcount = num_toks;