Welcome to mirror list, hosted at ThFree Co, Russian Federation.

strndup_r.c « string « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 86d9eec44019fa9d2b5ef2bb715bf754895fb61a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <reent.h>
#include <stdlib.h>
#include <string.h>

#define MIN(a,b) ((a) < (b) ? (a) : (b))

char *
_DEFUN (_strndup_r, (reent_ptr, str, n), 
        struct _reent *reent_ptr  _AND
        _CONST char   *str _AND
        size_t n)
{
  size_t len = MIN(strlen (str), n);
  char *copy = _malloc_r (reent_ptr, len + 1);
  if (copy)
    {
      memcpy (copy, str, len);
      copy[len] = '\0';
    }
  return copy;
}