This commit is contained in:
anon 2024-02-19 14:09:28 +01:00
parent cc3b123bfa
commit 32345aff86
3 changed files with 4 additions and 2 deletions

View File

@ -26,7 +26,7 @@ const char * const help_message =
" -s <string> : colon separeted list of option sets\n"
" -S <string> : colon separeted list of special asymetric tags starters\n"
" -i <string> : colon separeted list of tags which contents should be ignored\n"
" -o <file> : specify output file name for the NEXT file\n"
" -o <file> : specify output file name for the NEXT input file\n"
" -q <char> : use <char> for quoting (default: \"'\")\n"
" -v : print version and quit\n"
" -h : print help and quit\n"

View File

@ -1,5 +1,7 @@
#include "html_special.hpp"
#include <stdint.h>
const size_t html_special_table_size =
sizeof(html_special_table)
/

View File

@ -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);