poll tests: Avoid test failure on BSD and Solaris systems.
[gnulib.git] / doc / posix-functions / strcpy.texi
blobcdd3196d923b18f5c3452fc0bd4740120e341a90
1 @node strcpy
2 @section @code{strcpy}
3 @findex strcpy
5 POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9699919799/functions/strcpy.html}
7 Gnulib module: string
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 This function cannot be called from plain inline or extern inline functions
13 on some platforms:
14 OS X 10.8.
15 @end itemize
17 Portability problems not fixed by Gnulib:
18 @itemize
19 @end itemize
21 Note: @code{strcpy (dst, src)} is only safe to use when you can guarantee that
22 there are at least @code{strlen (src) + 1} bytes allocated at @code{dst}.