C++ Programming/Code/Standard C Library/Functions/getenv

getenv

Syntax
#include <cstdlib>
char *getenv( const char *name );

The function getenv() returns environmental information associated with name, and is very implementation dependent. NULL is returned if no information about name is available.

Related topics
system
Category:Book:C++ Programming#Code/Standard%20C%20Library/Functions/getenv%20
Category:Book:C++ Programming