Hi infamous,
Well on looking on /usr/include/string.h I find:
extern char *strtok_r(char *, const char *, char **);
When I attempt to change:
char *s;
to
int s;
I get rid of that error and get the following error:
implicit declaration of function `int strtok_r(...)'
Great isn't it, it says it wants an int even although there is no way I can see how the function would work with an int, when it an int it causes an error still.
Any further advice graciously recieved.
Thanks
Ben