File:  [MW Coherent from dump] / coherent / b / lib / libc / string / strcat.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Wed May 29 04:56:35 2019 UTC (7 years ago) by root
Branches: MarkWilliams, MAIN
CVS tags: relic, HEAD
coherent

/*
 * strcat.c
 * ANSI 4.11.3.1.
 * Concatenate strings.
 */

#include <string.h>

char *strcat(s1, s2) char *s1; register char *s2;
{
	register char *cp;

	for (cp = s1; *cp++; )
		;
	for (cp--; *cp++ = *s2++; )
		;
	return (s1);
}

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.