X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fdumpword.c;h=d0afa9f8457d1b2753f0cedb8c43dd1b99265aa1;hb=373540e9b114c01712121c36b40f47a98e12d263;hp=7544f256925c3805362c171f957584aa4c0b6e53;hpb=712486afe58b10ef37c5fa915de889ab8d1dd6cd;p=YACASL2.git diff --git a/src/dumpword.c b/src/dumpword.c index 7544f25..d0afa9f 100644 --- a/src/dumpword.c +++ b/src/dumpword.c @@ -1,28 +1,28 @@ -#include "casl2.h" #define _GNU_SOURCE +#include +#include #include +#include "word.h" +#include "cerr.h" static struct option longopts[] = { - {"arithmetic", no_argument, NULL, 'a'}, - {"logical", no_argument, NULL, 'l'}, - {"help", no_argument, NULL, 'h'}, - {0, 0, 0, 0}, -}; - -CERRARRAY cerr[] = { - { 114, "not integer" }, - { 115, "not hex" }, - { 116, "out of hex range" }, - { 0, NULL }, + { "arithmetic", no_argument, NULL, 'a' }, + { "logical", no_argument, NULL, 'l' }, + { "help", no_argument, NULL, 'h' }, + { 0, 0, 0, 0 }, }; +/** + * dumpwordコマンドのメイン + */ int main(int argc, char *argv[]) { - bool logicalmode = false; /* レジストリの内容を論理値(0〜65535)で表示する場合はtrue */ + bool logicalmode = false; /* レジストリの内容を論理値(0から65535)で表示する場合はtrue */ int opt; WORD word; const char *usage = "Usage: %s [-alh] WORD\n"; + cerr_init(); while((opt = getopt_long(argc, argv, "alh", longopts, NULL)) != -1) { switch(opt) { case 'l': @@ -43,14 +43,11 @@ int main(int argc, char *argv[]) } /* WORD値に変換 */ word = nh2word(argv[optind]); - if(cerrno > 0) { - fprintf(stderr, "Dumpword Error - %d: %s\n", cerrno, cerrmsg); + if(cerr->num > 0) { + fprintf(stderr, "Dumpword Error - %d: %s\n", cerr->num, cerr->msg); exit(-1); } - if(logicalmode == true) { - fprintf(stdout, "%6s: %6d = #%04X = %s\n", argv[optind], word, word, word2bit(word)); - } else { - fprintf(stdout, "%6s: %6d = #%04X = %s\n", argv[optind], (short)word, word, word2bit(word)); - } + fprintf(stdout, "%6s: ", argv[optind]); + print_dumpword(word, logicalmode); return 0; }