diff options
Diffstat (limited to '')
-rw-r--r-- | pls.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/pls.c b/pls.c index 7e6570c..0667036 100644 --- a/pls.c +++ b/pls.c @@ -20,18 +20,6 @@ #include <stdlib.h> #include <wchar.h> -wchar_t *wcssep(wchar_t **stringp, const wchar_t *delim) { - wchar_t *orig = *stringp; - if (!orig) return NULL; - size_t i = wcscspn(orig, delim); - *stringp = NULL; - if (orig[i]) { - orig[i] = L'\0'; - *stringp = &orig[i + 1]; - } - return orig; -} - // From <https://en.cppreference.com/w/c/io/fwprintf#Notes>: // // While narrow strings provide snprintf, which makes it possible to determine |