/*
* Information about all instructions. This is not really needed as the
* automatially generated efun_arg_types[] should be used.
*/
struct instr {
short max_arg, min_arg; /* Can't use char to represent -1 */
char type[2];
short Default;
short ret_type;
char *name;
int arg_index;
};
extern struct instr instrs[256];