Lines Matching refs:tostring
472 * char *tostring, *fromstring;
475 mergeProto(tostring, fromstring)
476 char *tostring, *fromstring;
481 while ( *(tostring = nextProto(tostring)) != NULLCHAR ) {
482 if ( *tostring == *fromstring )
485 tostring++;
488 if ( *tostring == NULLCHAR ) {
490 (void) strncpy(tostring, fromstring, length);
491 *(tostring + length) = NULLCHAR;
493 tostring++;
495 if ( (*tostring != '(') && (*fromstring == '(') ) {
496 (void) strcpy(buffer, tostring);
498 (void) strncpy(tostring, fromstring, length);
499 (void) strcpy(tostring+length, buffer);