X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=standalone.c;h=cedfca21a154245e26c92ddb16c175477f79bfca;hb=c1f808d5a921b7974753997400b3edf21c6880e8;hp=7e9abc451fec0ab839365821c44012765047a740;hpb=d392d5f692337233acaf45d2a1a5158529440c16;p=gedcom-parse.git diff --git a/standalone.c b/standalone.c index 7e9abc4..cedfca2 100644 --- a/standalone.c +++ b/standalone.c @@ -2,46 +2,76 @@ /* $Name$ */ #include "gedcom.h" +#include "multilex.h" + +void show_help () +{ + printf("gedcom-parse test program for libgedcom\n\n"); + printf("Usage: gedcom-parse [options] file\n"); + printf("Options:\n"); + printf(" -h Show this help text\n"); + printf(" -nc Disable compatibility mode\n"); + printf(" -fi Fail immediately on errors\n"); + printf(" -fd Deferred fail on errors, but parse completely\n"); + printf(" -fn No fail on errors\n"); + printf(" -dg Debug setting: only libgedcom debug messages\n"); + printf(" -da Debug setting: libgedcom + yacc debug messages\n"); +} int main(int argc, char* argv[]) { MECHANISM mech = IMMED_FAIL; + int compat_enabled = 1; + int debug_level = 0; + char* file_name = NULL; + if (argc > 1) { int i; for (i=1; i