cosmopolitan/examples/env.c

11 lines
249 B
C
Raw Normal View History

#include "libc/runtime/runtime.h"
2024-06-01 20:30:43 +00:00
#include "libc/stdio/stdio.h"
int main(int argc, char* argv[]) {
fprintf(stderr, "%s (%s)\n", argv[0], GetProgramExecutableName());
2024-06-01 20:30:43 +00:00
for (char** p = environ; *p; ++p) {
printf("%s\n", *p);
}
return 0;
}