cpp-cheat/c/getenv.c
2015-06-26 23:40:41 +02:00

16 lines
220 B
C

/*
# getenv
# Envoronment variables
Returns NULL if not found.
*/
#include "common.h"
int main() {
printf("HOME = %s\n", getenv("HOME"));
assert(getenv("NOT_DEFINED") == NULL);
return EXIT_SUCCESS;
}