X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=src%2Fdumpword.c;h=1fca90e585b9252d695cd496e9242589da9465f0;hp=d0afa9f8457d1b2753f0cedb8c43dd1b99265aa1;hb=f4ecd19f404c806c33603dd5bcd508f4e5c80731;hpb=d1f82970bf7d41db2fea11b08cd8e308f6cb8138 diff --git a/src/dumpword.c b/src/dumpword.c index d0afa9f..1fca90e 100644 --- a/src/dumpword.c +++ b/src/dumpword.c @@ -1,53 +1,64 @@ -#define _GNU_SOURCE -#include -#include -#include +#include "package.h" #include "word.h" -#include "cerr.h" +/** + * @brief dumpwordコマンドのオプション + */ static struct option longopts[] = { { "arithmetic", no_argument, NULL, 'a' }, { "logical", no_argument, NULL, 'l' }, + { "version", no_argument, NULL, 'v' }, { "help", no_argument, NULL, 'h' }, { 0, 0, 0, 0 }, }; /** - * dumpwordコマンドのメイン + * @brief dumpwordコマンドのメイン + * + * @return 正常終了時は0、エラー発生時は1 + * + * @param argc コマンドライン引数の数 + * @param *argv[] コマンドライン引数の配列 */ int main(int argc, char *argv[]) { bool logicalmode = false; /* レジストリの内容を論理値(0から65535)で表示する場合はtrue */ int opt; WORD word; + const char *version = PACKAGE_VERSION, *cmdversion = "dumpword of YACASL2 version %s\n"; const char *usage = "Usage: %s [-alh] WORD\n"; cerr_init(); - while((opt = getopt_long(argc, argv, "alh", longopts, NULL)) != -1) { + addcerrlist_word(); + while((opt = getopt_long(argc, argv, "alvh", longopts, NULL)) != -1) { switch(opt) { case 'l': logicalmode = true; break; + case 'v': + fprintf(stdout, cmdversion, version); + return 0; case 'h': fprintf(stdout, usage, argv[0]); return 0; case '?': fprintf(stderr, usage, argv[0]); - exit(-1); + exit(1); } } if(argv[optind] == NULL) { fprintf(stderr, usage, argv[0]); - exit(-1); + exit(1); } /* WORD値に変換 */ word = nh2word(argv[optind]); if(cerr->num > 0) { fprintf(stderr, "Dumpword Error - %d: %s\n", cerr->num, cerr->msg); - exit(-1); + exit(1); } fprintf(stdout, "%6s: ", argv[optind]); print_dumpword(word, logicalmode); + fprintf(stdout, "\n"); return 0; }