X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdumpword.c;h=9574364de72f7872cafcb02adf50b71a21f11196;hb=539d2aa8319c65bd9782de8782deb45fae28243c;hp=7e7d00a9a6990adef32c9cea6a548c0ceca8dea1;hpb=2d3d185962d2997a08cd2e674868cea35b99ae04;p=YACASL2.git diff --git a/src/dumpword.c b/src/dumpword.c index 7e7d00a..9574364 100644 --- a/src/dumpword.c +++ b/src/dumpword.c @@ -1,9 +1,13 @@ #define _GNU_SOURCE +#include +#include #include #include "word.h" #include "cerr.h" -#include "cmem.h" +/** + * dumpwordコマンドのオプション + */ static struct option longopts[] = { { "arithmetic", no_argument, NULL, 'a' }, { "logical", no_argument, NULL, 'l' }, @@ -11,14 +15,18 @@ static struct option longopts[] = { { 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(); + addcerrlist_word(); while((opt = getopt_long(argc, argv, "alh", longopts, NULL)) != -1) { switch(opt) { case 'l':