[BACK]Return to parse.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / parse

Diff for /OpenXM_contrib2/asir2000/parse/parse.h between version 1.40 and 1.47

version 1.40, 2005/10/26 07:33:03 version 1.47, 2007/04/30 02:14:34
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/parse/parse.h,v 1.39 2005/09/30 01:35:25 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/parse/parse.h,v 1.46 2006/03/22 09:40:03 noro Exp $
 */  */
 # if defined(VISUAL)  # if defined(VISUAL)
 #include <time.h>  #include <time.h>
Line 69  typedef enum {
Line 69  typedef enum {
         I_FORMULA, I_LIST, I_STR, I_NEWCOMP, I_CAR, I_CDR, I_CAST,          I_FORMULA, I_LIST, I_STR, I_NEWCOMP, I_CAR, I_CDR, I_CAST,
         I_INDEX, I_EV, I_TIMER, I_GF2NGEN, I_GFPNGEN, I_GFSNGEN,          I_INDEX, I_EV, I_TIMER, I_GF2NGEN, I_GFPNGEN, I_GFSNGEN,
         I_LOP, I_OPT, I_GETOPT, I_POINT, I_PAREN, I_MINUS,          I_LOP, I_OPT, I_GETOPT, I_POINT, I_PAREN, I_MINUS,
         I_NARYOP, I_CONS          I_NARYOP, I_CONS, I_FUNC_QARG, I_FUNC_HEAD,
 } fid;  } fid;
   
 /* identifiers for statements */  /* identifiers for statements */
Line 123  typedef struct oPV {
Line 123  typedef struct oPV {
 typedef struct oINFILE {  typedef struct oINFILE {
         char *name;          char *name;
         FILE *fp;          FILE *fp;
           JMP_BUF jmpbuf;
           int ready_for_longjmp;
         int ln;          int ln;
         struct oINFILE *next;          struct oINFILE *next;
         char *tname;          char *tname;
Line 136  struct oTKWD {
Line 138  struct oTKWD {
 };  };
   
 typedef struct fid_spec {  typedef struct fid_spec {
     fid id;          fid id;
         farg_type type[10];          farg_type type[10];
 } *fid_spec_p;  } *fid_spec_p;
   
Line 194  typedef struct oPFINS {
Line 196  typedef struct oPFINS {
 #define NEWPF(p) ((p)=(PF)MALLOC(sizeof(struct oPF)))  #define NEWPF(p) ((p)=(PF)MALLOC(sizeof(struct oPF)))
   
 typedef struct oFNODE {  typedef struct oFNODE {
         fid id;          short id;
           unsigned normalized:1;
           unsigned expanded:2;
           unsigned coef:1;
         pointer arg[1];          pointer arg[1];
 } *FNODE;  } *FNODE;
   

Legend:
Removed from v.1.40  
changed lines
  Added in v.1.47

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>