X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=src%2Fdumpword.c;h=1fca90e585b9252d695cd496e9242589da9465f0;hp=d39dfafbd865316e3182758f0bc6afd2dde2858a;hb=f4ecd19f404c806c33603dd5bcd508f4e5c80731;hpb=8b76a2371ab7fc325f11b9164a73e899f98072f0 diff --git a/src/dumpword.c b/src/dumpword.c index d39dfaf..1fca90e 100644 --- a/src/dumpword.c +++ b/src/dumpword.c @@ -1,13 +1,8 @@ -#define _GNU_SOURCE -#include -#include -#include -#include "word.h" -#include "cerr.h" #include "package.h" +#include "word.h" /** - * dumpwordコマンドのオプション + * @brief dumpwordコマンドのオプション */ static struct option longopts[] = { { "arithmetic", no_argument, NULL, 'a' }, @@ -18,7 +13,12 @@ static struct option longopts[] = { }; /** - * dumpwordコマンドのメイン + * @brief dumpwordコマンドのメイン + * + * @return 正常終了時は0、エラー発生時は1 + * + * @param argc コマンドライン引数の数 + * @param *argv[] コマンドライン引数の配列 */ int main(int argc, char *argv[]) { @@ -59,5 +59,6 @@ int main(int argc, char *argv[]) } fprintf(stdout, "%6s: ", argv[optind]); print_dumpword(word, logicalmode); + fprintf(stdout, "\n"); return 0; }