Home
last modified time | relevance | path

Searched refs:newstring (Results 1 – 4 of 4) sorted by relevance

/trueos/contrib/ipfilter/lib/
HDvar.c90 char c, *s, *p1, *p2, *p3, *newstring, *value; local
94 newstring = oldstring;
109 return newstring;
119 len = strlen(newstring) + strlen(p2);
130 strcpy(p1, newstring);
136 if (newstring != oldstring)
137 free(newstring);
138 newstring = p1;
142 return newstring;
/trueos/contrib/texinfo/makeinfo/
HDhtml.c344 char *newstring; in escape_string() local
370 newstring = xmalloc (newlen); in escape_string()
377 strcpy (newstring, """); in escape_string()
378 newstring += 6; in escape_string()
381 strcpy (newstring, "&"); in escape_string()
382 newstring += 5; in escape_string()
385 strcpy (newstring, "<"); in escape_string()
386 newstring += 4; in escape_string()
389 strcpy (newstring, ">"); in escape_string()
390 newstring += 4; in escape_string()
[all …]
/trueos/contrib/sendmail/src/
HDconf.c5389 char *newstring; local
5424 newstring = str2prt(buf);
5425 if ((strlen(newstring) + idlen + 1) < SYSLOG_BUFSIZE)
5436 (long) tv.tv_usec, newstring);
5439 sm_dprintf("%s\n", newstring);
5441 syslog(level, "%s", newstring);
5451 (long) tv.tv_usec, id, newstring);
5454 sm_dprintf("%s: %s\n", id, newstring);
5456 syslog(level, "%s: %s", id, newstring);
5462 newstring);
[all …]
/trueos/contrib/binutils/bfd/
HDcoffgen.c1673 char *newstring; in coff_get_normalized_symtab() local
1681 newstring = bfd_zalloc (abfd, (bfd_size_type) (i + 1)); in coff_get_normalized_symtab()
1682 if (newstring == NULL) in coff_get_normalized_symtab()
1684 strncpy (newstring, internal_ptr->u.syment._n._n_name, i); in coff_get_normalized_symtab()
1685 internal_ptr->u.syment._n._n_n._n_offset = (long int) newstring; in coff_get_normalized_symtab()