strtok()函数的返回值为什么不能赋值到指针变量

2019-07-21 06:16发布

void split( char **arr, char *str, const char *del)//字符分割函数的简单定义和实现
{
        char *s =NULL;
        s=strtok(str,del);
        while(s != NULL)
        {
                *arr++ = s;
                s = strtok(NULL,del);
        }
}
一个字符串分割函数,看以上代码,在C语言环境下调试没问题,在Keil uVision5环境下调试,s=strtok(str,del);语句报错误如下:
..HARDWARESTMFLASHstmflash.c(123): error:  #513: a value of type "int" cannot be assigned to an entity of type "char *"。s是指针变量,strtok()函数的返回值是指针,为什么出现以上错误请高手指点!

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。