14 lines
193 B
C
14 lines
193 B
C
|
#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__
|