sandbox/misc/kf/dictionary.h

14 lines
193 B
C
Raw Permalink Normal View History

2018-02-21 23:54:00 +00:00
#ifndef __KF_DICTIONARY_H__
#define __KF_DICTIONARY_H__
#include "defs.h"
struct entry {
char word[MAX_WORD_LEN];
void (*fun)(void);
struct entry *next;
};
#endif // __KF_DICTIONARY_H__