home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ARM Club 1
/
ARM_CLUB_CD.iso
/
contents
/
apps
/
program
/
a
/
as1_23
/
source
/
h
/
expr
< prev
next >
Encoding:
Amiga (detected)
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-07-20
|
217 b
|
18 lines
/*
* expr.h
* Copyright © 1992 Niklas Röjemo
*/
#ifndef _expr_h
#define _expr_h
#ifndef _value_h
#include "value.h"
#endif
void exprBuild(void); /* Parse the input */
Value exprEval(ValueTag legal);
#endif