Lines Matching +defs:temp +defs:string
51 #include <string.h>
68 /* "CLASS" "z" string and memory manipulation */
86 void *temp;
87 temp = realloc(ptr, size);
88 if (temp == NULL) {
92 return temp;
463 * Return != 0 if "string" starts with "pattern" followed by whitespace.
467 startswith(const char *string, const char *pattern)
471 if (strlen(string) <= l) return NULL;
472 if (strncmp(string, pattern, l) != 0) return NULL;
473 string += l;
474 if (!isspace(*string)) return NULL;
475 while (isspace(*string))
476 string++;
477 return string;
591 "%s: FONT name in '%s' is invalid string '%s'!\n",
632 "%s: SLANT property in '%s' is invalid string '%s'!\n",
643 "%s: SPACING property in '%s' is invalid string '%s'!\n",
712 char *temp = NULL;
720 temp = zstrdup(argv[i]);
721 hyphen = strchr(temp, '-');
723 zstrcpy(®istry, temp);
725 free(temp);