strcmp 不起作用,在第二次循环迭代中找到它

发布于 2024-11-03 08:11:45 字数 495 浏览 1 评论 0原文

int compare_filenames(char* data, char* filename){
    //note: we only have 31 directory/file entries within a block
    int i;
    int offset;
    //printf("argument %s\n", filename);
    for(i = 0; i < BLOCK_SIZE; i+=16){
        if(strcmp(filename, &data[i])){
            offset = i + 12;

            return data[i+12];// double check here
        }

    }
    return ERR_FILE_NOT_FOUND; //didn't find it within
}

对于某些原因,即使第一个元素位于开头,strcmp 也会经历两次循环迭代

int compare_filenames(char* data, char* filename){
    //note: we only have 31 directory/file entries within a block
    int i;
    int offset;
    //printf("argument %s\n", filename);
    for(i = 0; i < BLOCK_SIZE; i+=16){
        if(strcmp(filename, &data[i])){
            offset = i + 12;

            return data[i+12];// double check here
        }

    }
    return ERR_FILE_NOT_FOUND; //didn't find it within
}

for some reson strcmp goes through two loop iterations even when the first element is right at the beginning

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

揽清风入怀 2024-11-10 08:11:45

当它们相等时 strcmp() 返回 0。如果其中一个大于或小于另一个,您就会返回。

strcmp() return 0 when they are equal. You are returning if one is greater or less than the other.

深海里的那抹蓝 2024-11-10 08:11:45

您想要执行 strcmp(filename, &data[i]) == 0

0 表示字符串之间匹配,计算结果为 false...

You want to do strcmp(filename, &data[i]) == 0.

0 indicates match between strings, which evaluated as false...

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