#ifndef ENTRY_H
#define ENTRY_H

typedef struct {
    int timestamp;
    char * command;
} entry_t;

#endif