# Functions
Add creates a new Task and places it in the backlog.
All prints every tracked task.
Backlog prints the Backlog.
Claim moves a task from the backlog to the TODO list.
Completed prints the Completed tasks.
Done marks a task as completed.
Modify alters an existing task.
ParseLabel decodes the name of a label.
ParseProject decodes the name of a project.
Read parses a Task from a file.
Remove deletes a task entirely.
Report generates a TODO.md for the current set of tasks.
ResetCompleted permanently deletes all completed tasks.
Return moves a task from the TODO list back to the Backlog.
TODO prints the TODO list.
Undo moves a task from Completed to the Backlog.
# Constants
TaskFmt is the Scanf and Printf format string used for reading and saving Tasks.