10 lines
108 B
C

#ifndef ENTRY_H
#define ENTRY_H
typedef struct {
int timestamp;
char * command;
} entry_t;
#endif