summaryrefslogtreecommitdiff
path: root/src/string/strtok_s.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2024-01-30 15:29:55 -0500
committerJakob Kaivo <jkk@ung.org>2024-01-30 15:29:55 -0500
commit9b6f6642ee252a9bedbe267fd85376fc9359c74f (patch)
tree5676ac47d416ef56b8134d94df49110abc53998f /src/string/strtok_s.c
parent7f9129145f2293cb8c9052ff1f395226421b0ae4 (diff)
update standard and safety checks
Diffstat (limited to 'src/string/strtok_s.c')
-rw-r--r--src/string/strtok_s.c24
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