Lines Matching refs:token
27 * Find beginning of token (skip over leading delimiters).
28 * Note that there is no token if this loop sets string to point to the terminal null.
32 char *token = strToken;
33 while (*token != '\0') {
34 if (SecIsInDelimit(*token, strDelimit) != 0) {
35 ++token;
41 return token;
45 * Find rest of token
49 /* Find the rest of the token. If it is not the end of the string, put a null there */
50 char *token = strToken;
51 while (*token != '\0') {
52 if (SecIsInDelimit(*token, strDelimit) != 0) {
54 *token = '\0';
55 ++token;
58 ++token;
60 return token;
70 /* Determine if a token has been found. */
84 * strToken String containing token or tokens.