我无法在 C 中解析 CSV 文件。我需要使用该文件中的数据归档一个结构。这是我的结构的相关部分:
typedef struct Info {
/* Some strings, integers, etc. */
char correct; /* This is the value I can't set */
short int status;
} t_info;
我文件中的一行看起来像xxxxxx;xxxxxxx;xxxxxxx;D;254(D是我的问题,见下文)。
char line[1024]; /* Buffer */
t_info info;
fgets(line, sizeof(line), fp);
strcpy(info.xxxxxx, getLine(line, 1)); /* Works */
strcpy(info.xxxxxx, getLine(line, 2)); /* Works */
strcpy(info.xxxxxx, getLine(line, 3)); /* Works */
strcpy(info.correct, getLine(line, 4)); /* Crashs! */
getLine() 函数取自这篇文章:
const char *getLine(char *line, int num)
{
const char *tok, *tmp = strdup(line);
for (tok = strtok(tmp, ";"); tok && *tok; tok = strtok(NULL, ";\n"))
{
if (!--num)
return tok;
}
return NULL;
}
我的问题是什么?