1 | /* Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003, 2005, 2006 Free
|
---|
2 | Software Foundation, Inc.
|
---|
3 |
|
---|
4 | NOTE: The canonical source of this file is maintained with the GNU C Library.
|
---|
5 | Bugs can be reported to bug-glibc@prep.ai.mit.edu.
|
---|
6 |
|
---|
7 | This program is free software; you can redistribute it and/or modify it
|
---|
8 | under the terms of the GNU General Public License as published by the
|
---|
9 | Free Software Foundation; either version 2, or (at your option) any
|
---|
10 | later version.
|
---|
11 |
|
---|
12 | This program is distributed in the hope that it will be useful,
|
---|
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | GNU General Public License for more details.
|
---|
16 |
|
---|
17 | You should have received a copy of the GNU General Public License
|
---|
18 | along with this program; if not, write to the Free Software Foundation,
|
---|
19 | Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
|
---|
20 |
|
---|
21 | #if !_LIBC
|
---|
22 | # include <config.h>
|
---|
23 | # include "strndup.h"
|
---|
24 | #endif
|
---|
25 |
|
---|
26 | #include <stdlib.h>
|
---|
27 | #include <string.h>
|
---|
28 |
|
---|
29 | #if !_LIBC
|
---|
30 | # include "strnlen.h"
|
---|
31 | # ifndef __strnlen
|
---|
32 | # define __strnlen strnlen
|
---|
33 | # endif
|
---|
34 | #endif
|
---|
35 |
|
---|
36 | #undef __strndup
|
---|
37 | #if _LIBC
|
---|
38 | # undef strndup
|
---|
39 | #endif
|
---|
40 |
|
---|
41 | #ifndef weak_alias
|
---|
42 | # define __strndup strndup
|
---|
43 | #endif
|
---|
44 |
|
---|
45 | char *
|
---|
46 | __strndup (s, n)
|
---|
47 | const char *s;
|
---|
48 | size_t n;
|
---|
49 | {
|
---|
50 | size_t len = __strnlen (s, n);
|
---|
51 | char *new = malloc (len + 1);
|
---|
52 |
|
---|
53 | if (new == NULL)
|
---|
54 | return NULL;
|
---|
55 |
|
---|
56 | new[len] = '\0';
|
---|
57 | return memcpy (new, s, len);
|
---|
58 | }
|
---|
59 | #ifdef libc_hidden_def
|
---|
60 | libc_hidden_def (__strndup)
|
---|
61 | #endif
|
---|
62 | #ifdef weak_alias
|
---|
63 | weak_alias (__strndup, strndup)
|
---|
64 | #endif
|
---|