Files
RedBear-OS/tests/stdlib/env.c
T
2018-07-22 11:24:50 +02:00

12 lines
173 B
C

#include <stdio.h>
#include <stdlib.h>
int main() {
//puts(getenv("SHELL"));
//puts(getenv("CC"));
putenv("TEST=It's working!!");
puts(getenv("TEST"));
}