aboutsummaryrefslogtreecommitdiff
path: root/main.h
blob: 163673aec09b78b50050c0836eec34e603c1d05f (plain)
1
2
3
4
5
6
7
8
#define TITLE_LENGTH 101
#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