#ifndef ITEM_H #define ITEM_H #include typedef struct { bool complete; char* description; } Item; Item item_create(char* description); void item_mark_complete(Item* item); void item_print(Item* item); void item_destroy(Item* item); #endif