copy strings

You're viewing an older version of this page (#3292). View the current version.

View versions (3)

NAME

strcpy, strncpy

INTERFACE

#include <string.h> char stpcpy ( char *dst, const char *src ) char strcpy ( char * restrict dst, const char * restrict src ) char strncpy ( char * restrict dst, const char * restrict src, size_t len )

DESCRIPTION

The stpcpy and strcpy functions copy the string src to dst (including the terminating '\\0' character.)

The strncpy function copies at most len characters from src into dst. If src is less than len characters long, the remainder of dst is filled with '\\0' characters. Otherwise, dst is not terminated.

RETURN VALUES

The strcpy and strncpy functions return dst. The stpcpy function returns a pointer to the terminating '\\0' character of dst.

EXAMPLES

The following code sets chararray to "<code>abc\\0\\0\\0</code>":

char chararray[6];
(void)strncpy(chararray, "abc", sizeof(chararray));

The following code sets chararray to "<code>abcdef</code>:"

char chararray[6];
(void)strncpy(chararray, "abcdefgh", sizeof(chararray));

Note that it does not NULL terminate chararray because the length of the source string is greater than or equal to the length argument.

The following copies as many characters from input to buf as will fit and NULL terminates the result. Because strncpy does not guarantee to NULL terminate the string itself, this must be done explicitly.

char buf[1024];
(void)strncpy(buf, input, sizeof(buf) - 1);
buf[sizeof(buf) - 1] = '\0';

This could be better achieved using reference:strlcpy (3), as shown in the following example:

(void)strlcpy(buf, input, sizeof(buf));

Note that because reference:strlcpy (3) is not defined in any standards, it should only be used when portability is not a concern.

SECURITY CONSIDERATIONS

The strcpy function is easily misused in a manner which enables malicious users to arbitrarily change a running program's functionality through a buffer overflow attack.

SEE ALSO

memcpy (3) , memmove (3) , reference:strlcpy (3)

STANDARDS

The strcpy and strncpy functions conform to The stpcpy function is an MS-DOS and GNUism. The stpcpy function conforms to no standard.

HISTORY

The stpcpy function first appeared in FreeBSD 4.4 coming from 1998-vintage Linux.