strtok.c 248 B

12345678910111213
  1. #include <string.h>
  2. char *strtok(char *restrict s, const char *restrict sep)
  3. {
  4. static char *p;
  5. if (!s && !(s = p)) return NULL;
  6. s += strspn(s, sep);
  7. if (!*s) return p = 0;
  8. p = s + strcspn(s, sep);
  9. if (*p) *p++ = 0;
  10. else p = 0;
  11. return s;
  12. }