#ifndef __LATER_H__ #define __LATER_H__ #include typedef struct LaterItem LaterItem_t; struct LaterItem { char* directory; char* path; char* command; }; typedef struct LaterFile LaterFile_t; struct LaterFile { char* filename; FILE* file; LaterItem_t** items; int size; int capacity; bool loaded; bool modified; }; #endif