OSDN Git Service

(split) LDP: Update original to LDP v3.51.
[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  2012-05-10 "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 \fIs\fP.
82 Memory for the new string is
83 obtained with
84 .BR malloc (3),
85 and can be freed with
86 .BR free (3).
87
88 The
89 .BR strndup ()
90 function is similar, but copies at most
91 \fIn\fP bytes.
92 If \fIs\fP is longer than \fIn\fP, only \fIn\fP
93 bytes are copied, and a terminating null byte (\(aq\\0\(aq) is added.
94
95 .BR strdupa ()
96 and
97 .BR strndupa ()
98 are similar, but use
99 .BR alloca (3)
100 to allocate the buffer.
101 They are available only when using the GNU
102 GCC suite, and suffer from the same limitations described in
103 .BR alloca (3).
104 .SH RETURN VALUE
105 The
106 .BR strdup ()
107 function returns a pointer to the duplicated
108 string, or NULL if insufficient memory was available.
109 .SH ERRORS
110 .TP
111 .B ENOMEM
112 Insufficient memory available to allocate duplicate string.
113 .SH CONFORMING TO
114 .\" 4.3BSD-Reno, not (first) 4.3BSD.
115 .BR strdup ()
116 conforms to SVr4, 4.3BSD, POSIX.1-2001.
117 .BR strndup ()
118 conforms to POSIX.1-2008.
119 .BR strdupa ()
120 and
121 .BR strndupa ()
122 are GNU extensions.
123 .SH SEE ALSO
124 .BR alloca (3),
125 .BR calloc (3),
126 .BR free (3),
127 .BR malloc (3),
128 .BR realloc (3),
129 .BR string (3),
130 .BR wcsdup (3)