toaruos/userspace/tests/test-env.c
2013-02-10 01:36:35 -08:00

14 lines
231 B
C

#include <stdio.h>
#include <stdlib.h>
int main(int argc, char * argv) {
printf("hello world\n");
char * term = getenv("TERM");
if (term) {
printf("TERM=%s\n", term);
} else {
printf("TERM is not set.\n");
}
return 0;
}