1 2 3 4 5 6 7 8 9 10 11 12
#ifndef __LATER_H__ #define __LATER_H__ typedef struct LaterItem LaterItem_t; struct LaterItem { char* directory; char* path; char* command; }; #endif