]> git.wh0rd.org - ICEs.git/blob - 154175/dictionary_types.h
add bfin ice
[ICEs.git] / 154175 / 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;