エラーをリストで格納し、分散して追加するように修正
[YACASL2.git] / include / casl2.h
index 9a2fc07..3d602c4 100644 (file)
@@ -78,15 +78,16 @@ typedef enum {
     NONE = 0,
 } CMDTYPE;
 
-extern int cmdcodesize;
-
-/* 命令コードの配列 */
+/* 命令コード配列 */
 typedef struct {
     char *cmd;
     CMDTYPE type;
     WORD code;
 } CMDCODEARRAY;
 
+/* 命令コード配列のサイズ */
+extern int cmdcodesize;
+
 /* 命令コードのハッシュ表 */
 typedef struct _CMDCODETAB {
     struct _CMDCODETAB *next;