gpt4 book ai didi

c - 函数 fseeko 的隐式声明

转载 作者:太空宇宙 更新时间:2023-11-04 02:33:14 27 4
gpt4 key购买 nike

我正在尝试将 fseeko 函数与 GCC 编译器结合使用,以便在 C 中处理大于 4GiB 的文件。现在,一切正常,我可以工作了文件超过 4GiB,但 GCC 一直提示 fseeko 函数被隐式声明。这是生成此消息的源代码的最小工作示例:

#define __USE_LARGEFILE64
#define _LARGEFILE_SOURCE
#define _LARGEFILE64_SOURCE

#include "MemoryAllocator.h"

#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <sys/stat.h>

typedef struct BlockReader {
char* fileName;
// Total filesize of the file with name fileName in bytes.
unsigned long long fileSize;
// Size of one block in bytes.
unsigned int blockSize;
// Defines which block was last read.
unsigned int block;
// Defines the total amount of blocks
unsigned int blocks;
} BlockReader;

unsigned char* blockreader_read_raw_block(BlockReader* reader, long startPos, unsigned int length, size_t* readLength) {
FILE* file = fopen(reader->fileName, "rb");

unsigned char* buffer = (unsigned char*) mem_alloc(sizeof(unsigned char) * (length + 1));

FSEEK(file, startPos, 0);
fclose(file);

// Terminate buffer
buffer[length] = '\0';
return buffer;
}

我无法在任何地方找到我必须包含的 header 来修复此警告。 GCC 给出的确切警告是这样的:

src/BlockReader.c: In function ‘blockreader_read_block’:
src/BlockReader.c:80:2: warning: implicit declaration of function ‘fseeko’ [-Wimplicit-function-declaration]
FSEEK(file, reader->blockSize * reader->block, 0);

最佳答案

如果您使用的是 -std 选项之一,例如 -std=c99-std=c11,这些选项需要一个完整的符合标准的 C 环境,其中 POSIX 接口(interface)默认不公开(公开它们将是不符合标准的,因为它们位于为应用程序保留的命名空间中)。您需要将 _POSIX_C_SOURCE_XOPEN_SOURCE 定义为适当的值才能获取它们。 -D_POSIX_C_SOURCE=200809L 在命令行上,或者

#define _POSIX_C_SOURCE 200809L

在您的源文件中包含任何 header 之前,将是执行此操作的方法。

此外,虽然这不是您的直接问题,但请注意 __USE_LARGEFILE64_LARGEFILE_SOURCE_LARGEFILE64_SOURCE 都是不正确的。要获得 64 位 off_t,您唯一需要做的就是在命令行中使用 -D_FILE_OFFSET_BITS=64 或在您的命令中使用 #define _FILE_OFFSET_BITS 64包含任何 header 之前的源文件。

关于c - 函数 fseeko 的隐式声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40770673/

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