Meta: Add files to repository

This commit is contained in:
Alec Murphy 2025-03-25 07:32:23 -04:00
parent 80a0428b66
commit 39198164cd
1029 changed files with 78311 additions and 0 deletions

View file

@ -0,0 +1,7 @@
I64 @shell_cmd_pwd(@shell* sh, I64 argc, U8** argv)
{
U8 buf[512];
StrPrint(&buf, "%s\n", &sh->cwd);
Stdio.WriteLine(sh, &buf);
return 0;
}