Update old-style function definition for my_strtok()

This commit is contained in:
Richard Cohen 2023-01-24 13:35:46 +00:00
parent d6ac56ce5f
commit 47491eeaa5

View File

@ -109,9 +109,7 @@ static char *olds;
returning a 0 length valid string between two consecutive ocurence of delim.
It will also return a 0 length string instead of NULL when it reaches the end of s
*/
static char * my_strtok (s, delim)
char *s;
const char *delim;
static char * my_strtok (char *s, const char *delim)
{
char *token;
/*DEBUG("strtok(): Start...");*/