A simple command-line todo list application written in C.
- Add tasks
- List tasks
- Mark tasks as complete
- Delete tasks
- Store tasks persistently
Ensure you have GCC installed on your system.
gcc todo.c -o todo
# Add a new task
./todo add "Complete homework"
# List all tasks
./todo list
# Mark task as complete (using task number)
./todo done 1
# Delete a task (using task number)
./todo delete 1
- GCC compiler
- Standard C libraries
Feel free to submit issues and pull requests.
MIT License