1GETENV(3) Library Functions Manual GETENV(3)
23
4
NAME
6getenv - value for environment name
7
SYNOPSIS
9char *getenv(name)
10char *name;
11
DESCRIPTION
13Getenv searches the environment list (see environ(5)) for a string of
14the form name=value and returns value if such a string is present, oth‐
15erwise 0 (NULL).
16
SEE ALSO
18environ(5), exec(2)
1920
21
22
GETENV(3)