xref: /original-bsd/lib/libc/string/strcat.c (revision fac09079)
1 /*
2  * Copyright (c) 1988 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #if defined(LIBC_SCCS) && !defined(lint)
9 static char sccsid[] = "@(#)strcat.c	5.5 (Berkeley) 06/01/90";
10 #endif /* LIBC_SCCS and not lint */
11 
12 #include <string.h>
13 
14 char *
15 strcat(s, append)
16 	register char *s, *append;
17 {
18 	char *save = s;
19 
20 	for (; *s; ++s);
21 	while (*s++ = *append++);
22 	return(save);
23 }
24