c - Figuring out flags for the 'open' function -
the man 2 open
shows lot of flags (for instance, o_append
, o_async
etc) without disclosing numeric values. set of possible flags can differ os os, , version version.
are there library functions, can translate integer, containing combination of these flags, textual representation? similar strerror
, strsignal
?
(i can write such function myself, i'm asking more or less standard function that)
Comments
Post a Comment