]> git.saurik.com Git - minimal.git/blob - string.h
6a64597ba6f6ebe2969396eb3c3f7c2178cdfd85
[minimal.git] / string.h
1 #include <string.h>
2
3 char *strndup_(const char *src, int len) {
4 char *dst = malloc(len + 1);
5 _assert(dst != NULL);
6 strncpy(dst, src, len);
7 dst[len] = '\0';
8 return dst;
9 }