1STRCAT(3P)                 POSIX Programmer's Manual                STRCAT(3P)
2
3
4

PROLOG

6       This  manual  page is part of the POSIX Programmer's Manual.  The Linux
7       implementation of this interface may differ (consult the  corresponding
8       Linux  manual page for details of Linux behavior), or the interface may
9       not be implemented on Linux.
10

NAME

12       strcat - concatenate two strings
13

SYNOPSIS

15       #include <string.h>
16
17       char *strcat(char *restrict s1, const char *restrict s2);
18
19

DESCRIPTION

21       The strcat() function shall append a copy of the string pointed  to  by
22       s2  (including  the  terminating  null  byte)  to the end of the string
23       pointed to by s1. The initial byte of s2 overwrites the  null  byte  at
24       the end of s1. If copying takes place between objects that overlap, the
25       behavior is undefined.
26

RETURN VALUE

28       The strcat() function shall return s1; no return value is  reserved  to
29       indicate an error.
30

ERRORS

32       No errors are defined.
33
34       The following sections are informative.
35

EXAMPLES

37       None.
38

APPLICATION USAGE

40       This  issue  is  aligned  with the ISO C standard; this does not affect
41       compatibility with XPG3 applications. Reliable error detection by  this
42       function was never guaranteed.
43

RATIONALE

45       None.
46

FUTURE DIRECTIONS

48       None.
49

SEE ALSO

51       strncat(),   the   Base  Definitions  volume  of  IEEE Std 1003.1-2001,
52       <string.h>
53
55       Portions of this text are reprinted and reproduced in  electronic  form
56       from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
57       -- Portable Operating System Interface (POSIX),  The  Open  Group  Base
58       Specifications  Issue  6,  Copyright  (C) 2001-2003 by the Institute of
59       Electrical and Electronics Engineers, Inc and The Open  Group.  In  the
60       event of any discrepancy between this version and the original IEEE and
61       The Open Group Standard, the original IEEE and The Open Group  Standard
62       is  the  referee document. The original Standard can be obtained online
63       at http://www.opengroup.org/unix/online.html .
64
65
66
67IEEE/The Open Group                  2003                           STRCAT(3P)
Impressum