開いたファイルがビットマップかどうかをチェックする関数を作成しました。次の関数を書きました。
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"
.
誰かがこれで私を助けることができますか?