26 lines
485 B
C++
26 lines
485 B
C++
//
|
|
// See copyright.h for copyright notice and limitation of liability
|
|
// and disclaimer of warranty provisions.
|
|
//
|
|
#include "copyright.h"
|
|
|
|
#ifndef _COOL_H_
|
|
#define _COOL_H_
|
|
|
|
#include "cool-io.h"
|
|
|
|
/* a type renaming */
|
|
typedef int Boolean;
|
|
class Entry;
|
|
typedef Entry *Symbol;
|
|
|
|
Boolean copy_Boolean(Boolean);
|
|
void assert_Boolean(Boolean);
|
|
void dump_Boolean(ostream &,int,Boolean);
|
|
|
|
Symbol copy_Symbol(Symbol);
|
|
void assert_Symbol(Symbol);
|
|
void dump_Symbol(ostream &,int,Symbol);
|
|
|
|
#endif
|