aboutsummaryrefslogtreecommitdiff
path: root/later.h
blob: 875b81c4143c6805cbe0f7194e205429e812cf9d (plain)
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