diff options
Diffstat (limited to 'subsurface-core/strndup.h')
-rw-r--r-- | subsurface-core/strndup.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/subsurface-core/strndup.h b/subsurface-core/strndup.h deleted file mode 100644 index 84e18b60f..000000000 --- a/subsurface-core/strndup.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef STRNDUP_H -#define STRNDUP_H -#if __WIN32__ -static char *strndup (const char *s, size_t n) -{ - char *cpy; - size_t len = strlen(s); - if (n < len) - len = n; - if ((cpy = malloc(len + 1)) != - NULL) { - cpy[len] = - '\0'; - memcpy(cpy, - s, - len); - } - return cpy; -} -#endif -#endif /* STRNDUP_H */ |