setmode(3) - NetBSD Manual Pages

Command: Section: Arch: Collection:  
SETMODE(3)              NetBSD Library Functions Manual             SETMODE(3)


NAME
getmode, setmode -- modify mode bits
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <unistd.h> mode_t getmode(const void *set, mode_t mode); void * setmode(const char *mode_str);
DESCRIPTION
The getmode() function returns a copy of the file permission bits mode as altered by the values pointed to by set. While only the mode bits are altered, other parts of the file mode may be examined. The setmode() function takes an absolute (octal) or symbolic value, as described in chmod(1), as an argument and returns a pointer to mode val- ues to be supplied to getmode(). Because some of the symbolic values are relative to the file creation mask, setmode() may call umask(2). If this occurs, the file creation mask will be restored before setmode() returns. If the calling program changes the value of its file creation mask after calling setmode(), setmode() must be called again if getmode() is to mod- ify future file modes correctly. If the mode passed to setmode() is invalid, setmode() returns NULL.
ERRORS
The setmode() function may fail and set errno for any of the errors spec- ified for the library routines malloc(3) or strtol(3). In addition, setmode() will fail and set errno to: [EINVAL] The mode argument does not represent a valid mode.
SEE ALSO
chmod(1), stat(2), umask(2), malloc(3)
HISTORY
The getmode() and setmode() functions first appeared in 4.4BSD. NetBSD 4.0 October 1, 2005 NetBSD 4.0
Powered by man-cgi (2024-03-20). Maintained for NetBSD by Kimmo Suominen. Based on man-cgi by Panagiotis Christias.