| 6 | |
| 7 | #ifdef NO_POSIX_R |
| 8 | char *strtok_r(char *s, const char *delim, char **b) |
| 9 | { |
| 10 | if(s) *b = s; |
| 11 | *b += strspn(*b, delim); |
| 12 | if(!**b) return NULL; |
| 13 | s = *b; |
| 14 | *b += strcspn(s, delim); |
| 15 | if(**b) *(*b)++ = '\0'; |
| 16 | return s; |
| 17 | } |
| 18 | #endif |
| 19 | |
| 20 | string _timestringbuffer = ""; |
no outgoing calls
no test coverage detected