#ifndef __LATER_H__ #define __LATER_H__ typedef struct LaterItem LaterItem_t; struct LaterItem { char* directory; char* path; char* command; }; #endif