我创建了一个函数来检查打开的文件是否是位图。我写了以下函数:
int auth(FILE *fp)
{
if (fgetc(fp)!='B' || fgetc(fp)!='M'){
return 0;
}
else{
return 1;
}
}
但这是给一个ERROR:"FILE and fp not declared in this scope"
.
有人可以帮我弄这个吗?