|
solidc
Robust collection of general-purpose cross-platform C libraries and data structures designed for rapid and safe development in C
|
Environment variable utilities and safe access functions. More...
#include <stdlib.h>Go to the source code of this file.
Macros | |
| #define | GETENV(name) getenv(name) |
| #define | SETENV(name, value, overwrite) setenv(name, value, overwrite) |
| #define | UNSETENV(name) unsetenv(name) |
Environment variable utilities and safe access functions.
Definition in file env.h.
| #define GETENV | ( | name | ) | getenv(name) |
Cross-platform environment variable access macros.
GETENV: Retrieves environment variable value safely.
SETENV: Sets environment variable value.
UNSETENV: Removes environment variable.
| #define SETENV | ( | name, | |
| value, | |||
| overwrite | |||
| ) | setenv(name, value, overwrite) |