]> git.rkrishnan.org Git - dttsp.git/blob - jDttSP/thunk.h
Initial revision
[dttsp.git] / jDttSP / thunk.h
1 /* thunk.c */
2
3 #ifndef _thunk_h
4 #define _thunk_h
5
6 typedef int (*Thunk)(int n, char **p);
7
8 typedef struct _cmd_tbl_entry { char *key; Thunk thk; } CTE, *CTB;
9
10 extern Thunk Thunk_lookup(CTB ctb, char *key);
11
12 #endif