| ARCHIVE_READ_OPTIONS(3) | Library Functions Manual | ARCHIVE_READ_OPTIONS(3) | 
archive_read_set_filter_option,
  archive_read_set_format_option,
  archive_read_set_option,
  archive_read_set_options —
archive_read_set_filter_option(struct
  archive *, const char *module,
  const char *option, const char
  *value);
int
  
  archive_read_set_format_option(struct
    archive *, const char *module,
    const char *option, const char
    *value);
int
  
  archive_read_set_option(struct archive
    *, const char *module, const
    char *option, const char *value);
int
  
  archive_read_set_options(struct
    archive *, const char *options);
archive_read_set_filter_option(),
    archive_read_set_format_option()If option and
        value are both NULL, these
        functions will do nothing and ARCHIVE_OK will be
        returned. If option is
        NULL but value is not,
        these functions will do nothing and
        ARCHIVE_FAILED will be returned.
If module is not
        NULL, option and
        value will be provided to the filter or reader
        named module. The return value will be that of the
        module. If there is no such module,
        ARCHIVE_FAILED will be returned.
If module is
        NULL, option and
        value will be provided to every registered module.
        If any module returns ARCHIVE_FATAL, this value
        will be returned immediately. Otherwise,
        ARCHIVE_OK will be returned if any module
        accepts the option, and ARCHIVE_FAILED in all
        other cases.
archive_read_set_option()archive_read_set_format_option(), then
      archive_read_set_filter_option(). If either
      function returns ARCHIVE_FATAL,
      ARCHIVE_FATAL will be returned immediately.
      Otherwise, greater of the two values will be returned.archive_read_set_options()NULL or empty,
      ARCHIVE_OK will be returned immediately.
    Calls archive_read_set_option() with
        each option in turn. If any
        archive_read_set_option() call returns
        ARCHIVE_FATAL,
        ARCHIVE_FATAL will be returned immediately.
Individual options have one of the following forms:
compat-2xhdrcharsetmac-ext!mac-ext to
          disable.read_concatenated_archivesarchive_errno() and
  archive_error_string() functions.
| February 2, 2012 | NetBSD 9.3 |