]> git.saurik.com Git - minimal.git/blob - string.h
c259399bb894721f8368da3dddd8a60e881dc8d6
[minimal.git] / string.h
1 #ifndef MINIMAL_STRING_H
2 #define MINIMAL_STRING_H
3
4 #include <string.h>
5
6 _unused static char *strndup_(const char *src, int len) {
7 char *dst = malloc(len + 1);
8 _assert(dst != NULL);
9 strncpy(dst, src, len);
10 dst[len] = '\0';
11 return dst;
12 }
13
14 #endif/*MINIMAL_STRING_H*/