我正在 Xcode 4 中创建一个非常基本的 C 控制台应用程序,并且在编译时遇到警告: Implicit declaration of memcmp is invalid in c99
。
我对函数的使用正如你所期望的:
if(memcmp(buf, block, 0x14) != 0)
{
fclose(fh);
printf("invalid file: %s\n", argv[argc-1]);
return 1;
}
该功能的使用有何错误,我该如何解决?
最佳答案
您忘记了 #include <string.h>
,其中包含 memcmp
的声明。
关于c - memcmp 的隐式声明在 c99 中无效,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7132039/