Lines Matching defs:token
66 char *token;
72 * For each "/" separated token. If the token contains an environment
77 * If this is a token and it's an environment variable
91 * At this point EVERY token should evaluate
95 if ((token = getenv(varname)) != NULL &&
96 *token != NULL) {
98 while (*token)
99 *copy++ = *token++;
130 * move to the start of the next token.
139 * If we're in the middle of a non-parametric token, copy
200 char *token;
211 if (((token = getenv(&varname[1])) != NULL) &&
212 *token) {
213 /* copy token into varname */
214 while (*token)
215 *varname++ = *token++;