home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD5.iso
/
workbench
/
tools
/
czesc_2
/
gadmget
/
gadmget.source.lha
/
tree.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-07-14
|
253 b
|
20 lines
/* tree.h - declare structures used by tree.c
* vix 27jun86 [broken out of tree.c]
*/
#ifndef _TREE_FLAG
#define _TREE_FLAG
typedef struct tree_s
{
struct tree_s *tree_l, *tree_r;
short tree_b;
char *tree_p;
}
tree;
#endif _TREE_FLAG