-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.h
46 lines (39 loc) · 1.22 KB
/
post.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include "datum.h"
#include "symbol.h"
#include <math.h>
extern void push();
extern void eval(), add(), sub(), mul(), xdiv(), negate(), power(), modulo();
extern char *strsave();
extern void license();
extern int collinear();
typedef int (*Inst)();
#define STOP (Inst) 0
extern Inst *progp, *progbase, prog[], *code();
extern void assign(), bltin(), varpush(), constpush(), print(), varread();
extern void prexpr(), prstr();
extern void gt(), lt(), eq(), ge(), le(), ne(), and(), or(), not();
extern void ifcode(), whilecode(), call(), arg(), argassign();
extern void funcret(), procret();
extern void define();
extern void execerror();
extern int ls(void);
extern int com_ci(char *file);
extern char *rawfile_name();
extern char *independent_varname();
extern void initcode();
extern void init();
extern void execute();
extern void graphinit();
extern void graphnext();
extern void graphexpr(DATUM *d);
extern void graphxl(double xlmin, double xlmax);
extern void graphyl(double ylmin, double ylmax);
extern void graphlogx();
extern void graphversus();
extern void graphprint();
extern void graphprint_gnu();
extern void graphprint_pd();
char *rl_gets();
int rlgetc();
int rl_ungetc();
int moreinput();