X-Git-Url: https://secure.softndesign.org/git/?a=blobdiff_plain;f=parser.h;h=4907c67699a74dc69f5655065e5165df7ae8b072;hb=c7cbb833c65805634f6e9832b49e4a4680a4a4a6;hp=9e4c3f608f18196905f8eca679c70fae004ce369;hpb=715580ff81a00316fb8033d4ca2ceae4a2cafd94;p=calc.git diff --git a/parser.h b/parser.h index 9e4c3f6..4907c67 100644 --- a/parser.h +++ b/parser.h @@ -5,8 +5,6 @@ extern double answer; -extern char format[9]; - /* function type */ typedef enum { @@ -17,12 +15,13 @@ typedef enum { Cos, Sin, Tan, Acos, Asin, Atan, Log, Exp, Abs, Ceil, Floor, - Store, Recall, Inc, Dec, Disp, + Store, Recall, Inc, Dec, Disp, Mem, Clear, Quit, Help, Ans, E, Pi, Equal, Diff, Ge, Le, Gt, Lt, And, Or, Not, - Cond, While, Prog, Print + Cond, While, Prog, Print, + Prog, Call, List, Edit, Del } func_t; /* keyword type */ @@ -43,10 +42,20 @@ typedef struct _element_t { struct _element_t **ops; double value; int prio; + int hidden; } element_t; #define ERROR_OP ((element_t *)(-1)) +/* workspace type */ + +typedef struct _workspace_t { + int id; + double answer; + double *storage; + element_t *root; +} workspace_t; + /* parser function */ void delelement (element_t *root); @@ -63,6 +72,14 @@ char **generate_completion_list (); void free_completion_list (char **list); +/* print function */ + +void set_format (char *prompt, int precision); + +void free_format (); + +double print (double value); + #endif /* __PARSER_H__ */ /* vim: set ts=4 sw=4 et: */