libdl: first execute all destructors, then munmap library
[uclibc-ng.git] / libc / string / strndup.c
blob8e608669c6359bd79ac52fd06590f676345b5697
1 /*
2 * Copyright (C) 2002 Manuel Novoa III
3 * Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
5 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
6 */
8 #include "_string.h"
9 #include <stdlib.h>
12 char *strndup(register const char *s1, size_t n)
14 register char *s;
16 n = strnlen(s1,n); /* Avoid problems if s1 not nul-terminated. */
18 if ((s = malloc(n + 1)) != NULL) {
19 memcpy(s, s1, n);
20 s[n] = 0;
23 return s;
25 libc_hidden_def(strndup)