/*
*功能: 从文件中读入数据
*日期: 2008.9.4
*输入: fileName---文件名
*输出: dataStorage--存储数据的仓库 由你确定
*返回: 0----执行正确
* -1---遇到错误
*/
int getdata(const char *fileName,Datastruct *dataStorage)
{
FILE *fp;
if((fp=fopen(fileName,"r"))==NULL)
{
puts("Specify file not exist... Error exit.");
return -1;
}
/*
*开始读数据
*/
if(fread(dataStorage,sizeof(*dataStorage),1,fp)<1)
{
puts("file read fail");
fclose(fp);
return -1;
}
fclose(fp);
return 0;
}
温馨提示:内容为网友见解,仅供参考