6d83ef0138a79a757b61375461aaa18055f42bdd
[YACASL2.git] / include / word.h
1 #ifndef YACASL2_WORD_H_INCLUDED
2 #define YACASL2_WORD_H_INCLUDED
3
4 #include <stdio.h>
5 #include <string.h>
6 #include <assert.h>
7 #include <stdlib.h>
8 #include <ctype.h>
9 #include <stdbool.h>
10
11 #include "cerr.h"
12
13 /* WORD - 16ビットデータ型 */
14 typedef unsigned short WORD;
15
16 /* 10進数の文字列をWORD値に変換 */
17 WORD n2word(const char *str);
18
19 /* 16進数の文字列をWORD値に変換 */
20 WORD h2word(const char *str);
21
22 /* 10進数または16進数の文字列をWORD値に変換 */
23 WORD nh2word(const char *str);
24
25 /* WORD値を10進数の文字列に変換 */
26 char *word2n(WORD word);
27
28 /* WORD値を2進数の文字列に変換 */
29 char *word2bit(const WORD word);
30
31 /* WORD値を解析して表示 */
32 void print_dumpword(WORD word, bool logicalmode);
33
34 #endif