home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 3
/
goldfish_volume_3.bin
/
files
/
dev
/
cross
/
caz
/
src
/
calc.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-01-29
|
94b
|
10 lines
struct node
{
int type,
value;
struct node *prev;
};
#define VALUE 1
#define SYMBOL 2