// myStrTok.h  P.Conrad for CISC220,06J

// This is a sample implementation of strtok to illustrate the use
// of pointers, and a static variable inside a function.


// I Robot,2004,Will Smith,120000000,144795350
//   or
// Will Smith,Willard Christopher Smith, Jr.,09/25/1968,Philadelphia, PA


#ifndef MYSTRTOK_H
#define MYSTRTOK_H

char * myStrTok(char * s1, char delimit);

#endif // MYSTRTOK_H

