aboutsummaryrefslogtreecommitdiff
path: root/main.h
blob: ccc9ae129c8f246f63da2b09c2334e258aa4963f (plain)
1
2
3
4
5
6
7
8
#define TITLE_LENGTH 200
#define ID_LENGTH 12

typedef struct list {
    char id[ID_LENGTH];
    char name[101];
    struct list *next;
} list;
Feel free to download, copy and edit any repo