first commit
This commit is contained in:
13
CS4210/Project 2/common/strtok_r/strtok_r.h
Normal file
13
CS4210/Project 2/common/strtok_r/strtok_r.h
Normal 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
|
||||
Reference in New Issue
Block a user