Lines Matching refs:temp
17 const char *temp;
19 for (temp = str ; *temp ; temp++);
20 return temp-str;
199 const char *temp = str + crStrlen( str );
200 for ( ; temp >= str ; temp-- )
202 if (*temp == c)
203 return (char *) temp;
277 char *temp = (char *) str;
278 while ((temp = crStrstr( temp, substr )) != NULL )
280 temp += crStrlen(substr);
294 char *temp = (char *) str;
302 end = crStrstr( temp, splitstr );
304 end = temp + crStrlen( temp );
305 faked_argv[i] = crStrndup( temp, end-temp );
306 temp = end + crStrlen(splitstr);
316 char *temp = (char *) str;
327 end = crStrstr( temp, splitstr );
329 end = temp + crStrlen( temp );
330 faked_argv[i] = crStrndup( temp, end-temp );
331 temp = end + crStrlen(splitstr);