隐式声明memcmp在c99中无效
我正在 Xcode 4 中创建一个非常基本的 C 控制台应用程序,并且在编译时遇到警告:memcmp 的隐式声明在 c99 中无效
。
我对该函数的使用正如您所期望的:
if(memcmp(buf, block, 0x14) != 0)
{
fclose(fh);
printf("invalid file: %s\n", argv[argc-1]);
return 1;
}
该函数的使用有何错误以及我该如何修复它?
I'm creating a very basic C console application in Xcode 4 and I'm hitting a warning on compile: Implicit declaration of memcmp is invalid in c99
.
My use of the function is as you would expect:
if(memcmp(buf, block, 0x14) != 0)
{
fclose(fh);
printf("invalid file: %s\n", argv[argc-1]);
return 1;
}
How is the use of the function wrong and how can I go about fixing it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您忘记了
#include
,其中包含memcmp
的声明。You forgot to
#include <string.h>
, which contains the declaration ofmemcmp
.