diff options
Diffstat (limited to 'src/string/strtok_s.c')
| -rw-r--r-- | src/string/strtok_s.c | 24 |
1 files changed, 4 insertions, 20 deletions
diff --git a/src/string/strtok_s.c b/src/string/strtok_s.c index ef2c0075..7721a108 100644 --- a/src/string/strtok_s.c +++ b/src/string/strtok_s.c @@ -1,30 +1,14 @@ -#if 0 - #include <string.h> +#include "_safety.h" +#undef strtok_s char * strtok_s(char * restrict s1, rsize_t * restrict s1max, const char * restrict s2, char **restrict ptr) { - __C_EXT(1, 201112L); - int i = 0; - - if (s == NULL) - s = *lasts; - - while (i < strlen (s)) { - if (strchr (sep, s[i]) == NULL) { - i++; - } else { - s[i] = '\0'; - *lasts = &(s[i+1]); - return s; - } - } + SIGNAL_SAFE(0); + (void)s1; (void)s1max; (void)s2; (void)ptr; return NULL; } /* CEXT1(201112) */ - - -#endif |
