文件系统完结

This commit is contained in:
lzy
2024-05-13 22:13:51 +08:00
parent 1b796adfc3
commit e1c6873368
4 changed files with 195 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#include <stdio.h>
#include <stdlib.h>
extern char **environ;
int main(int argc, char **argv)
{
for (int i = 0; environ[i] != NULL; i++)
puts(environ[i]);
exit(0);
}