OSDN Git Service

LDP: Update original to LDP v3.79
[linuxjm/LDP_man-pages.git] / original / man3 / strdup.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .\" References consulted:
26 .\"     Linux libc source code
27 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
28 .\"     386BSD man pages
29 .\" Modified Sun Jul 25 10:41:34 1993 by Rik Faith (faith@cs.unc.edu)
30 .\" Modified Wed Oct 17 01:12:26 2001 by John Levon <moz@compsoc.man.ac.uk>
31 .TH STRDUP 3  2013-04-19 "GNU" "Linux Programmer's Manual"
32 .SH NAME
33 strdup, strndup, strdupa, strndupa \- duplicate a string
34 .SH SYNOPSIS
35 .nf
36 .B #include <string.h>
37 .sp
38 .BI "char *strdup(const char *" s );
39 .sp
40 .BI "char *strndup(const char *" s ", size_t " n );
41 .br
42 .BI "char *strdupa(const char *" s );
43 .br
44 .BI "char *strndupa(const char *" s ", size_t " n );
45 .fi
46 .sp
47 .in -4n
48 Feature Test Macro Requirements for glibc (see
49 .BR feature_test_macros (7)):
50 .in
51 .PD 0
52 .ad l
53 .sp
54 .BR strdup ():
55 .RS 4
56 _SVID_SOURCE || _BSD_SOURCE || _XOPEN_SOURCE\ >=\ 500 ||
57 _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED
58 .br
59 || /* Since glibc 2.12: */ _POSIX_C_SOURCE\ >=\ 200809L
60 .RE
61 .PP
62 .BR strndup ():
63 .RS 4
64 .TP 4
65 Since glibc 2.10:
66 _POSIX_C_SOURCE\ >=\ 200809L || _XOPEN_SOURCE\ >=\ 700
67 .TP
68 Before glibc 2.10:
69 _GNU_SOURCE
70 .RE
71 .PP
72 .BR strdupa (),
73 .BR strndupa ():
74 _GNU_SOURCE
75 .ad
76 .PD
77 .SH DESCRIPTION
78 The
79 .BR strdup ()
80 function returns a pointer to a new string which
81 is a duplicate of the string
82 .IR s .
83 Memory for the new string is
84 obtained with
85 .BR malloc (3),
86 and can be freed with
87 .BR free (3).
88
89 The
90 .BR strndup ()
91 function is similar, but copies at most
92 .I n
93 bytes.
94 If
95 .I s
96 is longer than
97 .IR n ,
98 only
99 .I n
100 bytes are copied, and a terminating null byte (\(aq\\0\(aq) is added.
101
102 .BR strdupa ()
103 and
104 .BR strndupa ()
105 are similar, but use
106 .BR alloca (3)
107 to allocate the buffer.
108 They are available only when using the GNU
109 GCC suite, and suffer from the same limitations described in
110 .BR alloca (3).
111 .SH RETURN VALUE
112 On success, the
113 .BR strdup ()
114 function returns a pointer to the duplicated
115 string.
116 It returns NULL if insufficient memory was available, with
117 .I errno
118 set to indicate the cause of the error.
119 .SH ERRORS
120 .TP
121 .B ENOMEM
122 Insufficient memory available to allocate duplicate string.
123 .SH CONFORMING TO
124 .\" 4.3BSD-Reno, not (first) 4.3BSD.
125 .BR strdup ()
126 conforms to SVr4, 4.3BSD, POSIX.1-2001.
127 .BR strndup ()
128 conforms to POSIX.1-2008.
129 .BR strdupa ()
130 and
131 .BR strndupa ()
132 are GNU extensions.
133 .SH SEE ALSO
134 .BR alloca (3),
135 .BR calloc (3),
136 .BR free (3),
137 .BR malloc (3),
138 .BR realloc (3),
139 .BR string (3),
140 .BR wcsdup (3)
141 .SH COLOPHON
142 This page is part of release 3.79 of the Linux
143 .I man-pages
144 project.
145 A description of the project,
146 information about reporting bugs,
147 and the latest version of this page,
148 can be found at
149 \%http://www.kernel.org/doc/man\-pages/.