/************************************************************* * File: lib/strmerge.c * Purpose: Part of C runtime library * Author: Phil Bunce (pjb@carmel.com) * Revision History: * 970304 Start of revision history */ /************************************************************** * strmerge(d,s) */ strmerge(d,s) char *d,*s; { int i; if (strlen(d) < strlen(s)) { for (i=strlen(d);i