Mercurial > ~dholland > hg > ag > index.cgi
view tests/agcl/ffcalc/good/ffcm-b.h @ 11:3aa0f5a02342
Remove unused variable; fix what it was supposed to be doing.
(and document it a bit for the next time through here)
author | David A. Holland |
---|---|
date | Tue, 31 May 2022 00:54:12 -0400 |
parents | 13d2b8934445 |
children |
line wrap: on
line source
#ifndef FFCM-B_H #define FFCM-B_H typedef union { double alignment; char ag_vt_2[sizeof(int)]; char ag_vt_4[sizeof(double)]; } ffcm-b_vs_type; typedef enum { ffcm-b_white_space_token = 1, ffcm-b_calculator_token = 4, ffcm-b_calculation_token, ffcm-b_eof_token = 11, ffcm-b_expression_token, ffcm-b_error_token = 16, ffcm-b_term_token, ffcm-b_factor_token = 20, ffcm-b_integer_part_token = 31, ffcm-b_fraction_part_token = 33, ffcm-b_digit_token = 35, ffcm-b_letter_token, ffcm-b_name_token = 43, ffcm-b_real_token = 50 } ffcm-b_token_type; typedef struct ffcm-b_pcb_struct{ ffcm-b_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]; ffcm-b_vs_type vs[128]; int ag_ap; const char *error_message; char read_flag; char exit_flag; int bts[128], btsx; int lab[4], rx, fx; const unsigned char *key_sp; int save_index, key_state; char ag_msg[82]; } ffcm-b_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 ffcm-b_pcb_type ffcm-b_pcb; void init_ffcm-b(void); void ffcm-b(void); #endif