Files
2025-06-07 01:59:34 -04:00

14 lines
245 B
C

#ifndef _STRTOK_R_H_
#define _STRTOK_R_H_
/*
* String Tokenizer! :)
* Toke up some strings to get
*
* s = string to toke
* delim = deliminator, thing to delim
*/
char *strtok_r(char *s, const char *delim, char** s3);
#endif