Home
Main website
Display Sidebar
Hide Ads
Recent Changes
View Source:
strcat(3)
Edit
PageHistory
Diff
Info
LikePages
STRCAT !!!STRCAT NAME SYNOPSIS DESCRIPTION RETURN VALUE CONFORMING TO SEE ALSO ---- !!NAME strcat, strncat - concatenate two strings !!SYNOPSIS __#include __''dest''__, const char *__''src''__); char *strncat(char *__''dest''__, const char *__''src''__, size_t__ ''n''__); __ !!DESCRIPTION The __strcat()__ function appends the ''src'' string to the ''dest'' string overwriting the `0' character at the end of ''dest'', and then adds a terminating `0' character. The strings may not overlap, and the ''dest'' string must have enough space for the result. The __strncat()__ function is similar, except that only the first ''n'' characters of ''src'' are appended to ''dest''. !!RETURN VALUE The __strcat()__ and __strncat()__ functions return a pointer to the resulting string ''dest''. !!CONFORMING TO SVID 3, POSIX, BSD 4.3, ISO 9899 !!SEE ALSO bcopy(3), memccpy(3), memcpy(3), strcpy(3), strncpy(3) ----
3 pages link to
strcat(3)
:
Man3s
string(3)
wcscat(3)
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.