diff options
Diffstat (limited to 'later.h')
| -rw-r--r-- | later.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +#ifndef __LATER_H__ +#define __LATER_H__ + +typedef struct LaterItem LaterItem_t; + +struct LaterItem { + char* directory; + char* path; + char* command; +}; + +#endif |
