メモリ管理の改善
[YACASL2.git] / include / word.h
index 24dea80..7f11c5e 100644 (file)
@@ -1,12 +1,19 @@
 #ifndef YACASL2_WORD_H_INCLUDED
 #define YACASL2_WORD_H_INCLUDED
 
+#include <stdio.h>
 #include <string.h>
 #include <assert.h>
 #include <stdlib.h>
 #include <ctype.h>
+#include <stdbool.h>
+
+#include "cmem.h"
 #include "cerr.h"
 
+/* wordのエラー定義 */
+bool addcerrlist_word();
+
 /* WORD - 16ビットデータ型 */
 typedef unsigned short WORD;
 
@@ -25,4 +32,7 @@ char *word2n(WORD word);
 /* WORD値を2進数の文字列に変換 */
 char *word2bit(const WORD word);
 
+/* WORD値を解析して表示 */
+void print_dumpword(WORD word, bool logicalmode);
+
 #endif