Files
oldlinux-files/study/linux-travel/MINIX-1.5/1.5/Source/commands/printenv.c
2024-02-19 00:25:23 -05:00

11 lines
188 B
C

/* printenv - print the current environment Author: Richard Todd */
main()
{
extern char **environ;
char **sptr;
for (sptr = environ; *sptr; ++sptr) {
prints("%s\n", *sptr);
}
}