home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_progs
/
prog_c
/
make2.lzh
/
MAKE2
/
VARS.H
< prev
Wrap
C/C++ Source or Header
|
1991-10-31
|
308b
|
19 lines
#define MAXVARS 50
/*
* struct var -- storage for variable
* assignments of the form
*
* name = string
*
*/
extern struct var {
char *pch_name;
char *string;
} avr_Vars[ MAXVARS ];
extern int n_Vars; /* count of defined variables */
extern DefineVar();
extern char *VarLookup();