Work around porting bugs reported by Dieter in
[gnulib.git] / lib / strndup.c
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 #ifdef HAVE_CONFIG_H
22 # include <config.h>
23 #endif
24 #if !_LIBC
25 # include "strndup.h"
26 #endif
27
28 #include <stdlib.h>
29 #include <string.h>
30
31 #if !_LIBC
32 # include "strnlen.h"
33 # ifndef __strnlen
34 #  define __strnlen strnlen
35 # endif
36 #endif
37
38 #undef __strndup
39 #undef strndup
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