X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=include%2Fword.h;h=0af12b4e4cf8149339c5980901540a6edb7cf5ed;hp=7f11c5e8c8deba5bebf2509be06e9a29b51fd34e;hb=373540e9b114c01712121c36b40f47a98e12d263;hpb=bf31ea99380e3ee2198f61f6510ebe6e4a3961f5 diff --git a/include/word.h b/include/word.h index 7f11c5e..0af12b4 100644 --- a/include/word.h +++ b/include/word.h @@ -1,28 +1,11 @@ #ifndef YACASL2_WORD_H_INCLUDED #define YACASL2_WORD_H_INCLUDED -#include -#include -#include -#include -#include #include -#include "cmem.h" -#include "cerr.h" - -/* wordのエラー定義 */ -bool addcerrlist_word(); - /* WORD - 16ビットデータ型 */ typedef unsigned short WORD; -/* 10進数の文字列をWORD値に変換 */ -WORD n2word(const char *str); - -/* 16進数の文字列をWORD値に変換 */ -WORD h2word(const char *str); - /* 10進数または16進数の文字列をWORD値に変換 */ WORD nh2word(const char *str);