]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_parser.h
read the Changelog
[features.git] / src / mathed / math_parser.h
index a3131f8888992ea4ba66d138f7eeaa065ef25e11..474a484ebc560847024c954d40fad71f937b20bf 100644 (file)
@@ -8,7 +8,7 @@
  *
  *  Dependencies: Xlib, XForms
  *
- *  Copyright: (c) 1996, Alejandro Aguilar Sierra
+ *  Copyright: 1996, Alejandro Aguilar Sierra
  *
  *   Version: 0.8beta.
  *
 
 #include "symbol_def.h"
 
-///
+
 #define LM_TK_OPEN '{'
-///
+
 #define LM_TK_CLOSE '}'
 
-///
+
 enum MathTokenEnum
 {
    LM_TK_BOP = 256,
@@ -66,28 +66,32 @@ enum MathTokenEnum
      LM_TK_STACK
 };
 
-///
-struct latexkeys { char const * name; short token; int id; };
 
-///
-struct latexkeys *
+struct latexkeys {
+       char const * name;
+       short token;
+       int id;
+};
+
+
+latexkeys *
 in_word_set (register char const * str, register int len);
 
-///
-struct latexkeys * lm_get_key(int index);
 
-///
-struct latexkeys * lm_get_key_by_id(int id, short tc = LM_TK_SYM);
+latexkeys * lm_get_key(int index);
+
+
+latexkeys * lm_get_key_by_id(int id, short tc = LM_TK_SYM);
+
 
-///
 typedef union{
-  ///
+
 unsigned char c;
-  ///
+
 char * s;
-  ///
+
 int i;
-  ///
+
 latexkeys * l;
 } YYSTYPE;