隐式声明memcmp在c99中无效

发布于 2024-11-30 17:01:39 字数 282 浏览 0 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稚气少女 2024-12-07 17:01:39

您忘记了 #include,其中包含 memcmp 的声明。

You forgot to #include <string.h>, which contains the declaration of memcmp.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文