/* vi: set ts=2: +-------------------+ Christian Schlittchen | | Enno Rehling | Eressea PBEM host | Katja Zedel | (c) 1998 - 2001 | Henning Peters | | Ingo Wilken +-------------------+ Stefan Reich This program may not be used, modified or distributed without prior permission by the authors of Eressea. */ #ifndef COMMAND_H #define COMMAND_H struct tnode; extern void add_command(struct tnode * keys, const char * str, void(*fun)(const char*, void *, const char*)); extern int do_command(const struct tnode * keys, void * u, const char * cmd); #endif