[BACK]Return to parse.h CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_math

Diff for /OpenXM/src/ox_math/Attic/parse.h between version 1.4 and 1.5

version 1.4, 1999/11/06 21:39:37 version 1.5, 1999/11/07 12:12:56
Line 1 
Line 1 
 /* -*- mode: C; coding: euc-japan -*- */  /* -*- mode: C; coding: euc-japan -*- */
 /* $OpenXM: OpenXM/src/ox_math/parse.h,v 1.3 1999/11/02 19:51:18 ohara Exp $ */  /* $OpenXM: OpenXM/src/ox_math/parse.h,v 1.4 1999/11/06 21:39:37 ohara Exp $ */
   
 #ifndef _PARSE_H_  #ifndef _PARSE_H_
   
Line 37  int mygetc();
Line 37  int mygetc();
 int setmode_mygetc(char *s, int len);  int setmode_mygetc(char *s, int len);
   
 typedef struct {  typedef struct {
         char *key;      char *key;
         int  tag;      int  tag;
         int  token;      int  token;
         int  type;      int  type;
 } symbol;  } symbol;
   
   symbol* lookup_by_symbol(char *key);
   symbol* lookup_by_token(int tok);
   symbol* lookup_by_tag(int tag);
   symbol* lookup(int i);
   
 #endif /* _PARSE_H_ */  #endif /* _PARSE_H_ */

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

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