first commit

This commit is contained in:
Jose Caban
2025-06-07 01:59:34 -04:00
commit 388ac241f0
3558 changed files with 9116289 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#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