From 32345aff86c7fc8d7dba4bf8a23110db684221f5 Mon Sep 17 00:00:00 2001 From: anon Date: Mon, 19 Feb 2024 14:09:28 +0100 Subject: [PATCH] bump --- source/cli.cpp | 2 +- source/html_special.cpp | 2 ++ source/main.cpp | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/source/cli.cpp b/source/cli.cpp index cf9f6e9..dcf2305 100644 --- a/source/cli.cpp +++ b/source/cli.cpp @@ -26,7 +26,7 @@ const char * const help_message = " -s : colon separeted list of option sets\n" " -S : colon separeted list of special asymetric tags starters\n" " -i : colon separeted list of tags which contents should be ignored\n" -" -o : specify output file name for the NEXT file\n" +" -o : specify output file name for the NEXT input file\n" " -q : use for quoting (default: \"'\")\n" " -v : print version and quit\n" " -h : print help and quit\n" diff --git a/source/html_special.cpp b/source/html_special.cpp index fe3d164..78f8d37 100644 --- a/source/html_special.cpp +++ b/source/html_special.cpp @@ -1,5 +1,7 @@ #include "html_special.hpp" +#include + const size_t html_special_table_size = sizeof(html_special_table) / diff --git a/source/main.cpp b/source/main.cpp index b309184..e2a3744 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -74,7 +74,7 @@ void trim(std::string &s) { } signed main(int argc, char * * argv) { - const int b = parse_round1_arguments(argc - 1, argv + 1); + const int b = parse_round1_arguments(argc, argv); switch (b) { case 0: break; case EXIT_EARLY_SUCCESS: exit(EXIT_SUCCESS);