Lines Matching +defs:temp +defs:string
156 /* sprintf variant found in newer libc's which allocates string to print to */
306 * Return the position of the first unescaped occurrence of dest in string.
310 FindFirst(const char *string, char dest, int *lines)
315 if (*string == '\0')
317 if (*string == '\\') {
318 if (*++string == '\0')
321 else if (*string == dest)
322 return string;
323 if (*string == '\n' && lines)
325 string++;
332 const char *line, *colon, *temp, *str;
359 for (temp = str;
360 *temp && *temp != '\n' && isascii(*temp) && isspace(*temp);
361 temp++);
362 if (!*temp || *temp == '\n')
796 " -backup string backup suffix for -edit [%s]\n"
810 * whether or not the given string is an abbreviation of the arg.
1108 strcpy(tmpname3, "\\temp\\xrdbD_XXXXXX");
1127 strcpy(tmpname, "\\temp\\xrdb_XXXXXX");
1144 fatal("%s: Failed to open temp file: %s\n", ProgramName, filename);