blob: c3305fc95d366d4bd05b21c0482f649c7ce403ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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
|