ack/lang/cem/lint/lpass2/inpdef.str

25 lines
438 B
Plaintext
Raw Normal View History

1988-05-30 17:17:16 +00:00
#define NAMESIZE 100
#define FNAMESIZE 100
#define ARGTPSSIZE 2000
#define TYPESIZE 1000
struct inpdef {
struct inpdef *next;
int id_class;
char id_name[NAMESIZE];
char id_file[FNAMESIZE];
1988-07-08 22:24:06 +00:00
int id_line;
1988-05-30 17:17:16 +00:00
int id_nrargs;
char id_argtps[ARGTPSSIZE];
int id_returns;
char id_type[TYPESIZE];
int id_called;
int id_used;
int id_ignored;
int id_voided;
};
1988-07-08 22:24:06 +00:00
#define is_def(id) (is_def_class(id->id_class))
1988-05-30 17:17:16 +00:00
/* ALLOCDEF "inpdef" 10 */