aboutsummaryrefslogtreecommitdiffstats
path: root/man/libsimple_getenv_ne.3
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2018-10-20 15:34:27 +0200
committerMattias Andrée <maandree@kth.se>2018-10-20 15:40:29 +0200
commit8eaa42a7905748955b23aa08b28ce420670847fe (patch)
tree6152e117389b066e76f9ef4c225e48258c8baee2 /man/libsimple_getenv_ne.3
parentFix a typo. (diff)
downloadlibsimple-8eaa42a7905748955b23aa08b28ce420670847fe.tar.gz
libsimple-8eaa42a7905748955b23aa08b28ce420670847fe.tar.bz2
libsimple-8eaa42a7905748955b23aa08b28ce420670847fe.tar.xz
Add man pages for putenvf and getenv functions
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'man/libsimple_getenv_ne.3')
-rw-r--r--man/libsimple_getenv_ne.382
1 files changed, 82 insertions, 0 deletions
diff --git a/man/libsimple_getenv_ne.3 b/man/libsimple_getenv_ne.3
new file mode 100644
index 0000000..337a5f5
--- /dev/null
+++ b/man/libsimple_getenv_ne.3
@@ -0,0 +1,82 @@
+.\" -*- nroff -*-
+.TH LIBSIMPLE_GETENV_NE 3 2018-10-20 libsimple
+.SH NAME
+libsimple_getenv_ne \- get non-empty value of an environment variable
+.SH SYNOPSIS
+.nf
+#include <libsimple.h>
+
+static inline char *libsimple_getenv_ne(const char *\fIname\fP);
+
+#ifndef getenv_ne
+# define getenv_ne libsimple_getenv_ne
+#endif
+.fi
+
+Link with
+.IR \-lsimple .
+.SH DESCRIPTION
+The
+.BR libsimple_getenv_ne ()
+function searches the environment of the calling
+process for the environment variable
+.IR name .
+If it exists, its value is returned unless the value
+is the empty string.
+.PP
+Modifications to the environment variable made from
+within the process, its parent, or other ancestor,
+that have not be come visible to other process via
+replacement of the process image, are visible to the
+.BR libsimple_getenv_ne ()
+function.
+.SH RETURN VALUE
+If the environment variable
+.I name
+is defined with a non-empty value, its value
+is returned, otherwise
+.I NULL
+is returned.
+.PP
+The returned pointer must not be deallocated and
+its content should not be modified. The returned
+pointer becomes invalid when the environment variable
+.I name
+is unset or modified.
+.SH ERRORS
+The
+.BR libsimple_getenv_ne ()
+function cannot fail.
+.SH ATTRIBUTES
+For an explanation of the terms used in this section, see
+.BR attributes (7).
+.TS
+allbox;
+lb lb lb
+l l l.
+Interface Attribute Value
+T{
+.BR libsimple_getenv_ne ()
+T} Thread safety MT-Safe env
+T{
+.BR libsimple_getenv_ne ()
+T} Async-signal safety AS-Safe
+T{
+.BR libsimple_getenv_ne ()
+T} Async-cancel safety AC-Safe
+.TE
+.SH EXAMPLES
+None.
+.SH APPLICATION USAGE
+None.
+.SH RATIONALE
+None.
+.SH FUTURE DIRECTIONS
+None.
+.SH NOTES
+None.
+.SH BUGS
+None.
+.SH SEE ALSO
+.BR libsimple_getenv_e (3),
+.BR getenv (3)