xref: /original-bsd/lib/libc/gen/setmode.3 (revision 7717c4d4)
Copyright (c) 1989 The Regents of the University of California.
All rights reserved.

Redistribution and use in source and binary forms are permitted
provided that the above copyright notice and this paragraph are
duplicated in all such forms and that any documentation,
advertising materials, and other materials related to such
distribution and use acknowledge that the software was developed
by the University of California, Berkeley. The name of the
University may not be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

@(#)setmode.3 5.2 (Berkeley) 04/16/90

SETMODE 3 ""
C 7
NAME
getmode, setmode - modify mode bits
SYNOPSIS
getmode(set, mode)
mode_t *set, mode;

set = setmode(mode_str)
mode_t *set;
char *mode_str;
DESCRIPTION
Getmode 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.

Setmode takes an absolute (octal) or symbolic value, as described in chmod (1), as an argument and returns a pointer to mode values 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 modify future file modes correctly.

If the mode passed to setmode is invalid, setmode returns NULL.

ERRORS
Setmode may fail and set errno for any of the errors specified for the library routine malloc (3).
SEE ALSO
chmod(1), stat(2), umask(2), malloc(3)