]> git.wh0rd.org - ICEs.git/blob - dictionary_types.h
d3d0ed74bad684209f7ebd35a710d2c5986a3e8d
[ICEs.git] / dictionary_types.h
1 #include <stdlib.h>
2 #include <string.h>
3
4 typedef struct {
5 char* keyword;
6 char* alternative;
7 }element;
8
9 typedef struct {
10 element** inhoud[26];
11 int aantal[26];
12 }dictionary;