partial implementation of edit
[calc.git] / parser.h
CommitLineData
bc97a989
LM
1#ifndef __PARSER_H__
2#define __PARSER_H__
3
5075f6ea
LM
4/* global variables */
5
6extern double answer;
7
bc97a989
LM
8/* function type */
9
10typedef enum {
89cf0955 11 Val = 0, Sig,
bc97a989 12 Add, Sub,
c47a9298
LM
13 Mul, Div, Mod,
14 Pow, Sqr,
9e52bbc5 15 Cos, Sin, Tan, Acos, Asin, Atan,
3b4b0bbe 16 Log, Exp,
9e52bbc5 17 Abs, Ceil, Floor,
143f91ae 18 Store, Recall, Inc, Dec, Disp, Mem, Clear,
471da7c9 19 Quit, Help,
7fe742c9 20 Ans, E, Pi,
ca3e2a2f 21 Equal, Diff, Ge, Le, Gt, Lt,
94b4e517 22 And, Or, Not,
05aabb97 23 Cond, While, Code, Print,
c7cbb833 24 Prog, Call, List, Edit, Del
bc97a989
LM
25} func_t;
26
27/* keyword type */
28
29typedef struct _keyword_t {
30 char *keyword;
31 func_t func;
32 int nbops;
33 int offset;
ca3e2a2f 34 float prio;
bc97a989
LM
35} keyword_t;
36
37/* calculus element type */
38
bc97a989
LM
39typedef struct _element_t {
40 func_t func;
41 int nbops;
0c95a3d3 42 struct _element_t **ops;
fd88e359 43 double value;
11cda8d7 44 int prio;
2d0cd54c 45 int hidden;
bc97a989
LM
46} element_t;
47
0b489a77
LM
48#define ERROR_OP ((element_t *)(-1))
49
c7cbb833
LM
50/* workspace type */
51
52typedef struct _workspace_t {
53 int id;
54 double answer;
55 double *storage;
05aabb97 56 int storage_size;
c7cbb833 57 element_t *root;
2e34899a 58 char *string;
c7cbb833
LM
59} workspace_t;
60
bc97a989
LM
61/* parser function */
62
031d7bba
LM
63void delelement (element_t *root);
64
ef37d966 65element_t *parser (char *str, char **next, int prio);
bc97a989
LM
66
67void print_element (element_t *root, int level);
68
3b4b0bbe 69double evaluate_element (element_t *root, char mask);
f2927108 70
2e34899a
LM
71void save_string (int id, char *string);
72
b9c1c40d
LM
73/* completion functions */
74
75char **generate_completion_list ();
76
77void free_completion_list (char **list);
78
2a5ec9d1
LM
79/* print function */
80
81void set_format (char *prompt, int precision);
82
83void free_format ();
84
85double print (double value);
86
bc97a989
LM
87#endif /* __PARSER_H__ */
88
89/* vim: set ts=4 sw=4 et: */