我在 C 代码中使用了 strsep(),但我得到了这个错误。
void get_token()
{
char *token;
char *stringp;
int n = 1;
stringp = buf;
while( stringp != NULL )
{
token = strsep(&stringp, "\t\n");
switch(n) {
case 1 : strcpy(label, token);
case 2 : strcpy(opcode, token);
case 3 : strcpy(operand, token);
} n++;
}
}
这是我的代码,我像这样使用 strsep() 。我不知道错误所说的 int。我认为 strsep() return char*。