Query: strtofflags
OS: osx
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
STRTOFFLAGS(3) BSD Library Functions Manual STRTOFFLAGS(3)NAMEfflagstostr, strtofflags -- convert between file flag bits and their string namesLIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <unistd.h> char * fflagstostr(unsigned long flags); int strtofflags(char **stringp, unsigned long *setp, unsigned long *clrp);DESCRIPTIONThe fflagstostr() function returns a comma separated string of the file flags represented by flags. If no flags are set a zero length string is returned. If memory cannot be allocated for the return value, fflagstostr() returns NULL. The value returned from fflagstostr() is obtained from malloc() and should be returned to the system with free() when the program is done with it. The strtofflags() function takes a string of file flags, as described in chflags(1), parses it, and returns the 'set' flags and 'clear' flags such as would be given as arguments to chflags(2). On success strtofflags() returns 0, otherwise it returns non-zero and stringp is left pointing to the offending token.ERRORSThe fflagstostr() function may fail and set errno for any of the errors specified for the library routine malloc(3).SEE ALSOchflags(1), chflags(2), malloc(3)HISTORYThe fflagstostr() and strtofflags() functions first appeared in FreeBSD 4.0.BSDJanuary 1, 2000 BSD
Related Man Pages |
---|
chflags(2) - mojave |
chflags(2) - debian |
fflagstostr(3) - osx |
strtofflags(3) - freebsd |
fchflags(2) - osx |
Similar Topics in the Unix Linux Community |
---|
At A Glance Coloured Real Time Bargraph Generator... |
When is a _function_ not a _function_? |
Shopt -s histappend |
To print diamond asterisk pattern based on inputs |