/* * File: * todolist.h * Author: * Lindsey Kuper * Summary: * Structures and function prototypes for a circular doubly-linked to-do * list. */ #ifndef _TODOLIST_H_ #define _TODOLIST_H_ #include #include #include "list.h" typedef struct task { char *taskname; time_t deadline; int priority; } task; task *makeNewTask(char *taskname, time_t deadline, int priority); int printTask(task *tsk); int getCurrentPriority(list ls); #endif /* _TODOLIST_H_ */