Hi,
I'm writing a threaded application.
I'm having a situation where I wanted to STRTOK in a reentrant way (strtok loop which does another strtok inside each iteration).
Therefore I wanted to use reentrant, thread safe STRTOK_S.
I get " Missing prototype for 'strtok_s' ".
I have string.h included. Standard 'strtok' is compiling and working fine.
Does anyone know why do I get this compilation error ?
I can see declaration of strtok_s in the string.h file.
Cheers,