X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Fword.h;h=0af12b4e4cf8149339c5980901540a6edb7cf5ed;hb=456e72090c786b40ac10ee984617afc054555f4d;hp=72cde11ded2325be38311940c759511fbcd760c5;hpb=9a90bce10b932f8aa7045b9dceb4b99156666920;p=YACASL2.git diff --git a/include/word.h b/include/word.h index 72cde11..0af12b4 100644 --- a/include/word.h +++ b/include/word.h @@ -1,25 +1,11 @@ #ifndef YACASL2_WORD_H_INCLUDED #define YACASL2_WORD_H_INCLUDED -#include -#include -#include -#include -#include #include -/* 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);