X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=gedcom%2Fmultilex.c;h=9a57b628d2dc3cdf75a2f6a960c78465f66f4e25;hb=6cb2fba281c993d06b725b0ecb7cbe404f81aff7;hp=5b0aa4eec262861c492e5745115b7bbcd957ddb2;hpb=a6b1646d8fc8234b198d47c045a5a756a916d052;p=gedcom-parse.git diff --git a/gedcom/multilex.c b/gedcom/multilex.c index 5b0aa4e..9a57b62 100644 --- a/gedcom/multilex.c +++ b/gedcom/multilex.c @@ -118,10 +118,16 @@ int determine_encoding(FILE* f) int init_called = 0; -void gedcom_init() +int gedcom_init() { init_called = 1; update_gconv_search_path(); + if (!setlocale(LC_ALL, "") + || ! bindtextdomain(PACKAGE, LOCALEDIR) + || ! bind_textdomain_codeset(PACKAGE, INTERNAL_ENCODING)) + return 1; + else + return 0; } int gedcom_parse_file(const char* file_name) @@ -129,33 +135,6 @@ int gedcom_parse_file(const char* file_name) ENCODING enc; int result = 1; FILE* file; - char *locale, *save_locale, *save_textdom; - - locale = setlocale(LC_ALL, NULL); - if (! locale) { - gedcom_error(_("Could not retrieve locale information")); - return result; - } - - save_locale = strdup(locale); - if (! save_locale) { - MEMORY_ERROR; - return result; - } - - save_textdom = textdomain(NULL); - if (!save_textdom) { - gedcom_error(_("Could not retrieve locale domain: %s"), strerror(errno)); - return result; - } - - if (! setlocale(LC_ALL, "") - || ! bindtextdomain(PACKAGE, LOCALEDIR) - || ! bind_textdomain_codeset(PACKAGE, INTERNAL_ENCODING) - || ! textdomain(PACKAGE)) { - gedcom_error(_("Could not set locale: %s"), strerror(errno)); - return result; - } if (!init_called) { gedcom_error(_("Internal error: GEDCOM parser not initialized")); @@ -183,12 +162,6 @@ int gedcom_parse_file(const char* file_name) } } - if (! textdomain(save_textdom) - || ! setlocale(LC_ALL, save_locale)) { - gedcom_error(_("Could not restore locale: %s"), strerror(errno)); - return result; - } - free(save_locale); return result; } @@ -215,3 +188,19 @@ int gedcom_new_model() } return result; } + +int gedcom_check_version(int major, int minor, int patch) +{ + if (major < GEDCOM_PARSE_VERSION_MAJOR) + return 1; + else if (major > GEDCOM_PARSE_VERSION_MAJOR) + return 0; + else if (minor < GEDCOM_PARSE_VERSION_MINOR) + return 1; + else if (minor > GEDCOM_PARSE_VERSION_MINOR) + return 0; + else if (patch <= GEDCOM_PARSE_VERSION_PATCH) + return 1; + else + return 0; +}