1 2 3 4 5 6 7
#ifndef ENV_H #define ENV_H const char *getenv(const char *key); void setenv(const char *key, const char *value); #endif