/* stuff for builtin commands */ /* This file is part of the eggdrop source code copyright (c) 1997 Robey Pointer and is distributed according to the GNU general public license. For full details, read the top of 'main.c' or the file called COPYING that was distributed with this code. */ #define CMD_LEAVE (Function)(-1) typedef int (*Function)(); typedef struct { char *name; Function func; int access; } cmd_t;