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