Add todo.org, fix pwd.c

This commit is contained in:
call-cc 2020-06-02 17:25:33 -04:00
parent 8dcc572ff5
commit bc423b1309
3 changed files with 14 additions and 5 deletions

4
TODO
View File

@ -1,4 +0,0 @@
* The rest of programs.
* Manuals
* flags for the programs
* fix yes (constantly returns y when no argument is passed)

13
TODO.org Normal file
View File

@ -0,0 +1,13 @@
- [ ] The rest of programs.
- [ ] Manuals
- [-] flags for the programs
- [X] ln
- [X] cat
- [ ] dirname
- [ ] echo
- [ ] mkdir
- [ ] pwd
- [ ] rmdir
- [ ] rm
- [ ] touch
- [X] yes

View File

@ -5,5 +5,5 @@ int
main()
{
puts(getcwd(NULL, 0));
return 1;
return 0;
}