X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=gedcom.h;h=6f35d4eca12285f91fddcc9e112b7653b812b276;hb=95deed7400e87af12a987af2abf5187ab1ddf9aa;hp=be18280b090811136bd28bbc2df59185f91f9cff;hpb=400d2f34fa89de4f49c048ce3ce66a6ab2b0a7dd;p=gedcom-parse.git diff --git a/gedcom.h b/gedcom.h index be18280..6f35d4e 100644 --- a/gedcom.h +++ b/gedcom.h @@ -18,6 +18,13 @@ typedef enum _MECH { IGNORE_ERRORS } MECHANISM; +/* Basic file encoding */ +typedef enum _ENC { + ONE_BYTE, + TWO_BYTE_HILO, + TWO_BYTE_LOHI +} ENCODING; + int gedcom_error(char* s, ...); int gedcom_warning(char* s, ...); int gedcom_debug_print(char* s, ...); @@ -27,3 +34,4 @@ void gedcom_set_compat_handling(int enable_compat); int gedcom_parse(); int gedcom_lex(); extern int line_no; +extern FILE *gedcom_in;