Mercurial > ~dholland > hg > ag > index.cgi
view tests/agcl/examples/good/ffcalcx.h @ 20:bb115deb6fb2
Improve agfiles rule.
(1) It didn't depend on $(AGCL) and it absolutely should have.
(2) allow AGFORCE=1 to make it rebuild whether or not it looks out of
date.
(3) Document this.
author | David A. Holland |
---|---|
date | Mon, 13 Jun 2022 00:02:15 -0400 |
parents | 13d2b8934445 |
children |
line wrap: on
line source
#ifndef FFCALCX_H #define FFCALCX_H typedef union { double alignment; char ag_vt_2[sizeof(int)]; char ag_vt_4[sizeof(double)]; } ffcalcx_vs_type; typedef enum { ffcalcx_white_space_token = 1, ffcalcx_unary_minus_token = 7, ffcalcx_calculator_token, ffcalcx_calculation_token, ffcalcx_eof_token = 15, ffcalcx_expression_token, ffcalcx_name_token, ffcalcx_error_token = 19, ffcalcx_integer_part_token = 29, ffcalcx_fraction_part_token = 31, ffcalcx_digit_token = 33, ffcalcx_real_token = 39 } ffcalcx_token_type; typedef struct ffcalcx_pcb_struct{ ffcalcx_token_type token_number, reduction_token, error_frame_token; int input_code; int input_value; int line, column; int ssx, sn, error_frame_ssx; int drt, dssx, dsn; int ss[128]; ffcalcx_vs_type vs[128]; int ag_ap; const char *error_message; char read_flag; char exit_flag; int bts[128], btsx; int lab[3], rx, fx; const unsigned char *key_sp; int save_index, key_state; char ag_msg[82]; } ffcalcx_pcb_type; #ifndef PRULE_CONTEXT #define PRULE_CONTEXT(pcb) (&((pcb).cs[(pcb).ssx])) #define PERROR_CONTEXT(pcb) ((pcb).cs[(pcb).error_frame_ssx]) #define PCONTEXT(pcb) ((pcb).cs[(pcb).ssx]) #endif #ifndef AG_RUNNING_CODE /* PCB.exit_flag values */ #define AG_RUNNING_CODE 0 #define AG_SUCCESS_CODE 1 #define AG_SYNTAX_ERROR_CODE 2 #define AG_REDUCTION_ERROR_CODE 3 #define AG_STACK_ERROR_CODE 4 #define AG_SEMANTIC_ERROR_CODE 5 #endif extern ffcalcx_pcb_type ffcalcx_pcb; void init_ffcalcx(void); void ffcalcx(void); #endif