diff tests/agcl/ffcalc/good/ffcx-t.h @ 0:13d2b8934445

Import AnaGram (near-)release tree into Mercurial.
author David A. Holland
date Sat, 22 Dec 2007 17:52:45 -0500
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/agcl/ffcalc/good/ffcx-t.h	Sat Dec 22 17:52:45 2007 -0500
@@ -0,0 +1,58 @@
+#ifndef FFCX-T_H
+#define FFCX-T_H
+
+typedef union {
+  double alignment;
+  char ag_vt_2[sizeof(int)];
+  char ag_vt_4[sizeof(double)];
+} ffcx-t_vs_type;
+
+typedef enum {
+  ffcx-t_white_space_token = 1, ffcx-t_unary_minus_token = 7,
+  ffcx-t_calculator_token, ffcx-t_calculation_token, ffcx-t_eof_token = 15,
+  ffcx-t_expression_token, ffcx-t_name_token, ffcx-t_error_token = 19,
+  ffcx-t_integer_part_token = 29, ffcx-t_fraction_part_token = 31,
+  ffcx-t_digit_token = 33, ffcx-t_real_token = 39
+} ffcx-t_token_type;
+
+typedef struct ffcx-t_pcb_struct{
+  ffcx-t_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];
+  ffcx-t_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];
+} ffcx-t_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 ffcx-t_pcb_type ffcx-t_pcb;
+void init_ffcx-t(void);
+void ffcx-t(void);
+#endif
+