使用未声明的标识符 'ENOMEM'

Use of undeclared identifier 'ENOMEM'

我在我的 xcode 项目中使用 "libarchive",但出现以下错误

if (bytes_read < mine->block_size && ferror(mine->f)) {
    archive_set_error(a, errno, "Error reading file");
}

使用未声明的标识符'errno'

if (mine == NULL || b == NULL) {
    archive_set_error(a, ENOMEM, "No memory");
    free(mine);
    free(b);
    return (ARCHIVE_FATAL);
}

使用未声明的标识符'ENOMEM'

if (format_number(archive_entry_uid(entry), h + USTAR_uid_offset, USTAR_uid_size, USTAR_uid_max_size, strict)) {
    archive_set_error(&a->archive, ERANGE, "Numeric user ID too large");
    ret = ARCHIVE_FAILED;
}

使用未声明的标识符'ERANGE'

   write_nulls(struct archive_write *a, size_t padding)
{
  int ret;
  size_t to_write;

   while (padding > 0) {
    to_write = padding < a->null_length ? padding : a->null_length;
    ret = (a->compressor.write)(a, a->nulls, to_write);
    if (ret != ARCHIVE_OK)
    return (ret);
    padding -= to_write;
}
return (ARCHIVE_OK);}

'struct archive_write'

中没有名为 'compressor' 的成员

我该如何解决这个错误?

https://github.com/Tarsnap/tarsnap/blob/master/libarchive/archive_write_set_format_ustar.c

ENONEMERANGE 是在 errno.h 中定义的宏。至于errno,是出现一些错误时设置的整型变量。

因此,要访问那些 variables/defines,您需要在文件中添加 #include <errno.h>

更多文档:man errno