関数a2wordの名前をnh2wordに変更
[YACASL2.git] / src / word.c
index e4b9af8..83ae9bd 100644 (file)
@@ -40,7 +40,7 @@ WORD h2word(const char *str)
 }
 
 /* 10進数または16進数の文字列をWORD値に変換 */
-WORD a2word(const char *str)
+WORD nh2word(const char *str)
 {
     WORD word;
     if(!isdigit(*str) && *str != '-' && *str != '#') {