4.3BSD/usr/contrib/spms/src/lib/libspms/test/pfxcpy.a

!<arch>
Ipfxcpy         418696389   968   27    100644  29        `
src
src.update
src.update.1


Opfxcpy         418696389   968   27    100644  13        `
src
src
src


Tpfxcpy.c       418696392   968   27    100644  304       `
/*
 * pfxcpy()
 */
#include <stdio.h>

main()
{
	char *gets();			/* get a line from stdin */
	char inbuf[BUFSIZ];		/* input buffer */
	char outbuf[BUFSIZ];		/* output buffer */
	char *pfxcpy();			/* copy string prefix */

	while (gets(inbuf) != NULL)
		printf("%s\n", pfxcpy(outbuf, inbuf));
	exit(0);
}