#ifndef __TOKENS_H #define __TOKENS_H typedef enum types { NIL, HEADING, DATE, TODO, BULLET, } types; typedef struct token { char data[256]; types type; } token; #endif