gpt4 book ai didi

c - memcmp 的隐式声明在 c99 中无效

转载 作者:太空狗 更新时间:2023-10-29 15:51:17 27 4
gpt4 key购买 nike

我正在 Xcode 4 中创建一个非常基本的 C 控制台应用程序,我在编译时遇到警告:memcmp 的隐式声明在 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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com