Namespaces
Variants
Views
Actions

Difference between revisions of "c/string/byte/strcpy"

From cppreference.com
< c‎ | string‎ | byte
m (References; language link)
Line 63: Line 63:
 
dst = Make the test.
 
dst = Make the test.
 
}}
 
}}
 +
 +
===References===
 +
{{ref std c11}}
 +
{{ref std | section=7.24.2.3  | title=The strcpy function | p=363}}
 +
{{ref std | section=K.3.7.1.3 | title=The strcpy_s function | p=615-616}}
 +
{{ref std c99}}
 +
{{ref std | section=7.21.2.3  | title=The strcpy function | p=326}}
 +
{{ref std c89}}
 +
{{ref std | section= | title= }}
 +
{{ref std end}}
  
 
===See also===
 
===See also===
Line 72: Line 82:
 
{{dsc end}}
 
{{dsc end}}
  
 +
[[ar:c/string/byte/strcpy]]
 +
[[cs:c/string/byte/strcpy]]
 
[[de:c/string/byte/strcpy]]
 
[[de:c/string/byte/strcpy]]
 
[[es:c/string/byte/strcpy]]
 
[[es:c/string/byte/strcpy]]
Line 77: Line 89:
 
[[it:c/string/byte/strcpy]]
 
[[it:c/string/byte/strcpy]]
 
[[ja:c/string/byte/strcpy]]
 
[[ja:c/string/byte/strcpy]]
 +
[[ko:c/string/byte/strcpy]]
 +
[[pl:c/string/byte/strcpy]]
 
[[pt:c/string/byte/strcpy]]
 
[[pt:c/string/byte/strcpy]]
 
[[ru:c/string/byte/strcpy]]
 
[[ru:c/string/byte/strcpy]]
 +
[[tr:c/string/byte/strcpy]]
 
[[zh:c/string/byte/strcpy]]
 
[[zh:c/string/byte/strcpy]]

Revision as of 12:00, 21 February 2015

Defined in header <string.h>
(1)
char *strcpy( char *dest, const char *src );
(until C99)
char *strcpy( char *restrict dest, const char *restrict src );
(since C99)
errno_t strcpy_s(char *restrict dest, rsize_t destsz, const char *restrict src);
(2) (since C11)
1) Copies the character string pointed to by src, including the null terminator to the character array whose first element is pointed to by dest. The behavior is the dest array is not large enough. The behavior is undefined if the strings overlap.
2) Same as (1), except that it may clobber the rest of the destination array with unspecified values and that the following errors are detected at runtime and call the currently installed constraint handler function:
  • src or dest is a null pointer
  • destsz is zero or greater than RSIZE_MAX
  • destsz is less or equal strnlen_s(src, destsz), in other words, truncation would occur
  • overlap would occur between the source and the destination strings
As all bounds-checked functions, strcpy_s is only guaranteed to be available if __STDC_LIB_EXT1__ is defined by the implementation and if the user defines __STDC_WANT_LIB_EXT1__ to the integer constant 1 before including string.h.

Contents

Parameters

dest - pointer to the character array to write to
src - pointer to the null-terminated byte string to copy from
destsz - maximum number of characters to write, typically the size of the destination buffer

Return value

1) returns a copy of dest
2) returns zero on success, returns non-zero on error. Also, on error, writes zero to dest[0] (unless dest is a null pointer or destsz is zero or greater than RMAX_SIZE).

Notes

strcpy_s is allowed to clobber the destination array from the last character written up to destsz in order to improve efficiency: it may copy in multibyte blocks and then check for null bytes.

The function strcpy_s is similar to the BSD function strlcpy, except that

  • strlcpy truncates the source string to fit in the destination (which is a security risk)
  • strlcpy does not perform all the runtime checks that strcpy_s does
  • strlcpy does not make failures obvious by setting the destination to a null string or calling a handler if the call fails.

Although strcpy_s prohibits truncation due to potential security risks, it's possible to truncate a string using bounds-checked strncpy_s instead.

Example

#include <string.h>
#include <stdio.h>
 
int main(void)
{
    char *src = "Take the test.";
//  src[0] = 'M' ; // this would be undefined behavior
    char dst[strlen(src) + 1]; // +1 to accomodate for the null terminator
    strcpy(dst, src);
    dst[0] = 'M'; // OK
    printf("src = %s\ndst = %s\n", src, dst);
}

Output:

src = Take the test.
dst = Make the test.

References

  • C11 standard (ISO/IEC 9899:2011):
  • 7.24.2.3 The strcpy function (p: 363)
  • K.3.7.1.3 The strcpy_s function (p: 615-616)
  • C99 standard (ISO/IEC 9899:1999):
  • 7.21.2.3 The strcpy function (p: 326)
  • C89/C90 standard (ISO/IEC 9899:1990):

See also

copies a certain amount of characters from one string to another
(function) [edit]
copies one buffer to another
(function) [edit]
(C95)(C11)
copies one wide string to another
(function) [edit]