命令ハッシュ表周辺の調整
[YACASL2.git] / include / casl2.h
index 7cd937c..9a2fc07 100644 (file)
@@ -78,6 +78,8 @@ typedef enum {
     NONE = 0,
 } CMDTYPE;
 
+extern int cmdcodesize;
+
 /* 命令コードの配列 */
 typedef struct {
     char *cmd;
@@ -91,6 +93,10 @@ typedef struct _CMDCODETAB {
     CMDCODEARRAY *cca;
 } CMDCODETAB;
 
+extern CMDCODETAB **cmdtype_code;
+extern CMDCODETAB **code_type;
+extern int cmdtabsize;
+
 /* 命令と命令タイプがキーのハッシュ表を作成する */
 bool create_cmdtype_code();