Lines Matching refs:source
43 strcount(const char *source, const char *find) in strcount() argument
45 const char *p = source; in strcount()
50 if (source == NULL || find == NULL) in strcount()
55 if (strlen(source) == 0 || flen == 0) in strcount()
88 replaceall(char *source, const char *find, const char *replace) in replaceall() argument
101 if (source == NULL) in replaceall()
104 return (strlen(source)); in replaceall()
107 slen = strlen(source); in replaceall()
120 memcpy(temp, source, slen + 1); in replaceall()
122 temp = source; in replaceall()
125 p = source; t = temp; /* position elements */ in replaceall()
141 if (temp != source) in replaceall()
145 return (strlen(source)); in replaceall()
175 void strexpand(char *source) in strexpand() argument
183 pos = chr = source; in strexpand()
263 void strexpandnl(char *source) in strexpandnl() argument
270 cp1 = cp2 = source; in strexpandnl()
293 strtolower(char *source) in strtolower() argument
295 char *p = source; in strtolower()
297 if (source == NULL) in strtolower()