X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdumpword.c;h=7544f256925c3805362c171f957584aa4c0b6e53;hb=dbba1efb7f290dec54755c26baa05e263459560d;hp=e78b108733f7a51da11a94d23ed7d54ef5e81977;hpb=8a76ef9abe62fac15c40aebb64fbb8a541b78075;p=YACASL2.git diff --git a/src/dumpword.c b/src/dumpword.c index e78b108..7544f25 100644 --- a/src/dumpword.c +++ b/src/dumpword.c @@ -9,13 +9,20 @@ static struct option longopts[] = { {0, 0, 0, 0}, }; +CERRARRAY cerr[] = { + { 114, "not integer" }, + { 115, "not hex" }, + { 116, "out of hex range" }, + { 0, NULL }, +}; + int main(int argc, char *argv[]) { + bool logicalmode = false; /* レジストリの内容を論理値(0〜65535)で表示する場合はtrue */ int opt; WORD word; const char *usage = "Usage: %s [-alh] WORD\n"; - logicalmode = false; while((opt = getopt_long(argc, argv, "alh", longopts, NULL)) != -1) { switch(opt) { case 'l':