Main index | Section 3 | Options |
#include <archive_entry.h>
archive_entry_strmode() returns a string representation of the permission as used by the long mode of ls(1).
char * | Multibyte strings in the current locale. |
wchar_t * | |
Wide character strings in the current locale. The accessor functions are named XXX_w(). | |
UTF-8 | Unicode strings encoded as UTF-8. These are convenience functions to update both the multibyte and wide character strings at the same time. |
archive_entry_set_XXX() is an alias for archive_entry_copy_XXX().
The bitmap format consists of two integers, one containing bits that should be set, the other specifying bits that should be cleared. Bits not mentioned in either bitmap will be ignored. Usually, the bitmap of bits to be cleared will be set to zero. In unusual circumstances, you can force a fully-specified set of file flags by setting the bitmap of flags to clear to the complement of the bitmap of flags to set. (This differs from fflagstostr(3), which only includes names for set bits.) Converting a bitmap to a textual string is a platform-specific operation; bits that are not meaningful on the current platform will be ignored.
The canonical text format is a comma-separated list of flag names. The archive_entry_copy_fflags_text() and archive_entry_copy_fflags_text_w() functions parse the provided text and set the internal bitmap values. This is a platform-specific operation; names that are not meaningful on the current platform will be ignored. The function returns a pointer to the start of the first name that was not recognized, or NULL if every name was recognized. Note that every name — including names that follow an unrecognized name — will be evaluated, and the bitmaps will be set to reflect every name that is recognized. (In particular, this differs from strtofflags(3), which stops parsing at the first unrecognized name.)
ARCHIVE_ENTRY_PERMS (3) | February 2, 2012 |
Main index | Section 3 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.
“ | I define UNIX as “30 definitions of regular expressions living under one roof.” | ” |
— Donald Knuth |