]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/strdup.3
Import of man-pages 1.70
[thirdparty/man-pages.git] / man3 / strdup.3
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.
11 .\"
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.
19 .\"
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>
29 .TH STRDUP 3 1993-04-12 "GNU" "Linux Programmer's Manual"
30 .SH NAME
31 strdup, 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
38 .B #define _GNU_SOURCE
39 .br
40 .B #include <string.h>
41 .sp
42 .BI "char *strndup(const char *" s ", size_t " n );
43 .br
44 .BI "char *strdupa(const char *" s );
45 .br
46 .BI "char *strndupa(const char *" s ", size_t " n );
47 .sp
48 .fi
49 .SH DESCRIPTION
50 The \fBstrdup()\fP function returns a pointer to a new string which
51 is a duplicate of the string \fIs\fP. Memory for the new string is
52 obtained with \fBmalloc\fP(3), and can be freed with \fBfree\fP(3).
53
54 The \fBstrndup()\fP function is similar, but only copies at most
55 \fIn\fP characters. If \fIs\fP is longer than \fIn\fP, only \fIn\fP
56 characters are copied, and a terminating NUL is added.
57
58 \fBstrdupa\fP and \fBstrndupa\fP are similar, but use \fBalloca(3)\fP
59 to allocate the buffer. They are only available when using the GNU
60 GCC suite, and suffer from the same limitations described in \fBalloca(3)\fP.
61
62 .SH "RETURN VALUE"
63 The \fBstrdup()\fP function returns a pointer to the duplicated
64 string, or NULL if insufficient memory was available.
65 .SH ERRORS
66 .TP
67 .B ENOMEM
68 Insufficient memory available to allocate duplicate string.
69 .SH "CONFORMING TO"
70 .\" 4.3BSD-Reno, not (first) BSD 4.3.
71 SVID 3, BSD 4.3.
72 \fBstrndup()\fP, \fBstrdupa()\fP, and \fBstrndupa()\fP are GNU extensions.
73 .SH "SEE ALSO"
74 .BR alloca (3),
75 .BR calloc (3),
76 .BR free (3),
77 .BR malloc (3),
78 .BR realloc (3)