1/* -*- buffer-read-only: t -*- vi: set ro: */
2/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3#line 1
4/* A replacement function, for systems that lack strndup.
5
6   Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003, 2005, 2006, 2007, 2009,
7   2010 Free Software Foundation, Inc.
8
9   This program is free software; you can redistribute it and/or modify it
10   under the terms of the GNU General Public License as published by the
11   Free Software Foundation; either version 3, or (at your option) any
12   later version.
13
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19   You should have received a copy of the GNU General Public License
20   along with this program; if not, write to the Free Software Foundation,
21   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
22
23#include <config.h>
24
25#include <string.h>
26
27#include <stdlib.h>
28
29char *
30strndup (char const *s, size_t n)
31{
32  size_t len = strnlen (s, n);
33  char *new = malloc (len + 1);
34
35  if (new == NULL)
36    return NULL;
37
38  new[len] = '\0';
39  return memcpy (new, s, len);
40}
41