浏览代码

param type enum moved into the header file.

Jan Janak 22 年之前
父节点
当前提交
ae71370790
共有 2 个文件被更改,包括 4 次插入4 次删除
  1. 0 4
      parser/parse_to.c
  2. 4 0
      parser/parse_to.h

+ 0 - 4
parser/parse_to.c

@@ -34,10 +34,6 @@
 #include "../ut.h"
 #include "../mem/mem.h"
 
-enum {
-	TAG_PARAM = 400, GENERAL_PARAM
-};
-
 
 enum {
 	START_TO, DISPLAY_QUOTED, E_DISPLAY_QUOTED, DISPLAY_TOKEN,

+ 4 - 0
parser/parse_to.h

@@ -31,6 +31,10 @@
 
 #include "../str.h"
 
+enum {
+	TAG_PARAM = 400, GENERAL_PARAM
+};
+
 struct to_param{
 	int type;              /* Type of parameter */
 	str name;              /* Name of parameter */