
/*
 * EXECOM.H
 *
 *  (C) Copyright 1985-1990 by Matthew Dillon,  All Rights Reserved.
 */

struct COMMAND {
    int  (*func)();
    int  stat;
    int  val;
    char *name;
};

extern struct COMMAND Command[];
extern char *Desc[];

#define C_NO	    0x01    /* Not implimented yet		  */
#define C_COND	    0x02    /* Is conditional, execute despite if */


