Lines Matching defs:str
282 specified by "str".
285 hashValue(char *str)
289 while (*str) {
290 ret += (unsigned int)*str;
291 str++;
304 "str", copies the string to the newly allocated memory, and
308 dupString(char *str)
313 if (str) {
314 len = strlen(str) + 1;
318 (void)memcpy(ptr, str, len);
1014 writeString: Writes to "fp" a quoted string specified by "str". Does
1018 writeString(FILE *fp, char *str)
1020 if (str) {
1022 while (*str) {
1023 if (*str == '\\' || *str == '"')
1025 (void)fputc(*str, fp);
1026 str++;