X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=include%2Fcasl2.h;h=96363ea5ce2e2b219ba9020ab829b5f5c113bbe7;hp=7cd937c3afd942a2ad90051e9befd6483a97c84c;hb=e0de529cf2de73a298288fd294b24b964abdba34;hpb=756f119336f5433a85df0036971256b289d5a35a diff --git a/include/casl2.h b/include/casl2.h index 7cd937c..96363ea 100644 --- a/include/casl2.h +++ b/include/casl2.h @@ -78,6 +78,8 @@ typedef enum { NONE = 0, } CMDTYPE; +extern int cmdcodesize; + /* 命令コードの配列 */ typedef struct { char *cmd; @@ -91,6 +93,9 @@ typedef struct _CMDCODETAB { CMDCODEARRAY *cca; } CMDCODETAB; +extern CMDCODETAB *cmdtype_code[]; +extern CMDCODETAB *code_type[]; + /* 命令と命令タイプがキーのハッシュ表を作成する */ bool create_cmdtype_code();