]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/strdup.3
Added/updated glibc feature test macro requirements
[thirdparty/man-pages.git] / man3 / strdup.3
CommitLineData
fea681da
MK
1.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2.\"
3.\" Permission is granted to make and distribute verbatim copies of this
4.\" manual provided the copyright notice and this permission notice are
5.\" preserved on all copies.
6.\"
7.\" Permission is granted to copy and distribute modified versions of this
8.\" manual under the conditions for verbatim copying, provided that the
9.\" entire resulting derived work is distributed under the terms of a
10.\" permission notice identical to this one.
c13182ef 11.\"
fea681da
MK
12.\" Since the Linux kernel and libraries are constantly changing, this
13.\" manual page may be incorrect or out-of-date. The author(s) assume no
14.\" responsibility for errors or omissions, or for damages resulting from
15.\" the use of the information contained herein. The author(s) may not
16.\" have taken the same level of care in the production of this manual,
17.\" which is licensed free of charge, as they might when working
18.\" professionally.
c13182ef 19.\"
fea681da
MK
20.\" Formatted or processed versions of this manual, if unaccompanied by
21.\" the source, must acknowledge the copyright and authors of this work.
22.\"
23.\" References consulted:
24.\" Linux libc source code
25.\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
26.\" 386BSD man pages
27.\" Modified Sun Jul 25 10:41:34 1993 by Rik Faith (faith@cs.unc.edu)
28.\" Modified Wed Oct 17 01:12:26 2001 by John Levon <moz@compsoc.man.ac.uk>
cc4615cc 29.TH STRDUP 3 2007-07-26 "GNU" "Linux Programmer's Manual"
fea681da
MK
30.SH NAME
31strdup, strndup, strdupa, strndupa \- duplicate a string
32.SH SYNOPSIS
33.nf
34.B #include <string.h>
35.sp
36.BI "char *strdup(const char *" s );
37.sp
fea681da
MK
38.BI "char *strndup(const char *" s ", size_t " n );
39.br
40.BI "char *strdupa(const char *" s );
41.br
42.BI "char *strndupa(const char *" s ", size_t " n );
fea681da 43.fi
cc4615cc
MK
44.sp
45.in -4n
46Feature Test Macro Requirements for glibc (see
47.BR feature_test_macros (7)):
48.in
49.sp
50.BR strdup ():
51_SVID_SOURCE || _BSD_SOURCE || _XOPEN_SOURCE\ >=\ 500
52.br
53.BR strndup (),
54.BR strdupa (),
55.BR strndupa ():
56_GNU_SOURCE
fea681da 57.SH DESCRIPTION
60a90ecd
MK
58The
59.BR strdup ()
60function returns a pointer to a new string which
1c44bd5b
MK
61is a duplicate of the string \fIs\fP.
62Memory for the new string is
60a90ecd
MK
63obtained with
64.BR malloc (3),
65and can be freed with
66.BR free (3).
fea681da 67
60a90ecd
MK
68The
69.BR strndup ()
70function is similar, but only copies at most
c13182ef
MK
71\fIn\fP characters.
72If \fIs\fP is longer than \fIn\fP, only \fIn\fP
28d88c17 73characters are copied, and a terminating null byte ('\\0') is added.
fea681da 74
60a90ecd
MK
75.BR strdupa ()
76and
77.BR strndupa ()
78are similar, but use
79.BR alloca (3)
c13182ef
MK
80to allocate the buffer.
81They are only available when using the GNU
60a90ecd
MK
82GCC suite, and suffer from the same limitations described in
83.BR alloca (3).
fea681da 84.SH "RETURN VALUE"
60a90ecd
MK
85The
86.BR strdup ()
87function returns a pointer to the duplicated
fea681da
MK
88string, or NULL if insufficient memory was available.
89.SH ERRORS
90.TP
91.B ENOMEM
92Insufficient memory available to allocate duplicate string.
93.SH "CONFORMING TO"
b14d4aa5 94.\" 4.3BSD-Reno, not (first) 4.3BSD.
68e1685c
MK
95.BR strdup ()
96conforms to SVr4, 4.3BSD, POSIX.1-2001.
60a90ecd
MK
97.BR strndup (),
98.BR strdupa (),
99and
100.BR strndupa ()
101are GNU extensions.
fea681da
MK
102.SH "SEE ALSO"
103.BR alloca (3),
104.BR calloc (3),
105.BR free (3),
106.BR malloc (3),
1709027c 107.BR realloc (3),
cc4615cc 108.BR wcsdup (3)