X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=gedcom.h;h=1250340b07e166134d0e3b674f7ada88ec1a80c6;hb=8c02fad7b6049ce1b2b4cf106c8e3bdbbe0774f3;hp=742473c09eba5640ce9b3c9049345a464f8d2097;hpb=d392d5f692337233acaf45d2a1a5158529440c16;p=gedcom-parse.git diff --git a/gedcom.h b/gedcom.h index 742473c..1250340 100644 --- a/gedcom.h +++ b/gedcom.h @@ -1,22 +1,40 @@ +/* This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + + (C) 2001 by The Genes Development Team + Original author: Peter Verthez (Peter.Verthez@advalvas.be) +*/ + /* $Id$ */ /* $Name$ */ + +#ifndef __GEDCOM_H +#define __GEDCOM_H #include #include #include +#include +#include +#ifdef DMALLOC +#include +#endif -#define MAXGEDCOMLEVEL 99 -#define MAXSTDTAGLENGTH 4 +#define MAXGEDCLEVEL 99 +#define MAXGEDCLINELEN 255 +#define MAXGEDCTAGLEN 31 +#define MAXSTDTAGLEN 4 +#define MAXGEDCPTRLEN 22 #define GEDCOMTAGOFFSET 257 -/* Error handling mechanisms */ -typedef enum _MECH { - IMMED_FAIL, - DEFER_FAIL, - IGNORE_ERRORS -} MECHANISM; - int gedcom_error(char* s, ...); -void gedcom_enable_debug(); -void gedcom_set_error_handling(MECHANISM mechanism); +int gedcom_warning(char* s, ...); +int gedcom_message(char* s, ...); +int gedcom_debug_print(char* s, ...); + int gedcom_parse(); +int gedcom_lex(); + extern int line_no; +#endif /* __GEDCOM_H */