Lines Matching +defs:temp +defs:string
31 #include <string.h>
109 * routine "suspicious()" returns non-zero if the character string
633 ** We can check for the presence of the string " on " in the
1060 ** Basically, if the reply begins with the string
1176 ** $FILE token, the string " $FILE" is silently appended.
1193 ** pointer to a static string in which the corresponding command
1272 substitute(char *string, const char *token, const char *data)
1274 char temp[512];
1277 while ((c = strstr(string, token)) != NULL) {
1279 strlcpy(temp, string, sizeof(temp));
1280 strlcat(temp, data, sizeof(temp));
1282 strlcat(temp, c, sizeof(temp));
1283 strcpy(string, temp);