void read_csv_data(char* path)
{
FILE *fp = NULL;
char strLine[1024];
int ret = fopen_s(&fp, path, "r");
if (ret != 0) return;
while (!feof(fp))
{
fgets(strLine, 1024, fp);
//对读取的一会内容strLine进行处理
}
fclose(fp);
return;
}