mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 21:51:15 +00:00
18 lines
294 B
C
18 lines
294 B
C
#ifndef __TODOLIST_H
|
|
#define __TODOLIST_H
|
|
|
|
#include "dynamicArray.h"
|
|
#include "type.h"
|
|
|
|
Task* createTask (int priority, char *desc);
|
|
|
|
void saveList(DynArr *heap, FILE *filePtr);
|
|
|
|
void loadList(DynArr *heap, FILE *filePtr);
|
|
|
|
void printList(DynArr *heap);
|
|
|
|
void deleteList(DynArr *heap);
|
|
|
|
#endif
|