OAR

RTEMS GNU Tools On-Line Library


strcat

PREV UP NEXT Bookshelf

4.12: strcat---concatenate strings

Synopsis

#include <string.h>
char *strcat(char *dst, const char *src);

Description
strcat appends a copy of the string pointed to by src (including the terminating null character) to the end of the string pointed to by dst. The initial character of src overwrites the null character at the end of dst.


Returns
This function returns the initial value of dst


Portability
strcat is ANSI C.

strcat requires no supporting OS subroutines.



PREV UP NEXT Bookshelf

Packaging copyright © 1988-2000 OAR Corporation
Context copyright by each document's author. See Free Software Foundation for information.