strndup.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* Implement the strndup function.
  2. Copyright (C) 2005-2022 Free Software Foundation, Inc.
  3. Written by Kaveh R. Ghazi <ghazi@caip.rutgers.edu>.
  4. This file is part of the libiberty library.
  5. Libiberty is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Library General Public
  7. License as published by the Free Software Foundation; either
  8. version 2 of the License, or (at your option) any later version.
  9. Libiberty is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Library General Public License for more details.
  13. You should have received a copy of the GNU Library General Public
  14. License along with libiberty; see the file COPYING.LIB. If
  15. not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
  16. Boston, MA 02110-1301, USA. */
  17. /*
  18. @deftypefn Extension char* strndup (const char *@var{s}, size_t @var{n})
  19. Returns a pointer to a copy of @var{s} with at most @var{n} characters
  20. in memory obtained from @code{malloc}, or @code{NULL} if insufficient
  21. memory was available. The result is always NUL terminated.
  22. @end deftypefn
  23. */
  24. #include "ansidecl.h"
  25. #include <stddef.h>
  26. extern size_t strnlen (const char *s, size_t maxlen);
  27. extern PTR malloc (size_t);
  28. extern PTR memcpy (PTR, const PTR, size_t);
  29. char *
  30. strndup (const char *s, size_t n)
  31. {
  32. char *result;
  33. size_t len = strnlen (s, n);
  34. result = (char *) malloc (len + 1);
  35. if (!result)
  36. return 0;
  37. result[len] = '\0';
  38. return (char *) memcpy (result, s, len);
  39. }