#ifndef _ERROR_H
#define _ERROR_H
#ifdef __cplusplus
extern "C" {
#endif
typedef int boolean;
#define TRUE 1
#define FALSE 0
#define true 1
#define false 0
#define INUNKNOWN 0
#define INCPP 1
#define INCC 2
#define INAS 3
#define INLD 4
#define INLINT 5
#define INF77 6
#define INPI 7
#define INPC 8
#define INFRANZ 9
#define INLISP 10
#define INVAXIMA 11
#define INRATFOR 12
#define INLEX 13
#define INYACC 14
#define INAPL 15
#define INMAKE 16
#define INRI 17
#define INTROFF 18
#define INMOD2 19
#define INSUNF77 20
extern int language;
extern boolean notouch;
typedef int Errorclass;
#define C_FIRST 0
#define C_UNKNOWN 0
#define C_IGNORE 1
#define C_SYNC 2
#define C_DISCARD 3
#define C_NONSPEC 4
#define C_THISFILE 5
#define C_NULLED 6
#define C_TRUE 7
#define C_DUPL 8
#define C_LAST 9
#define SORTABLE(x) (!(NOTSORTABLE(x)))
#define NOTSORTABLE(x) (x <= C_NONSPEC)
extern char *class_table[];
extern int class_count[];
#define nunknown class_count[C_UNKNOWN]
#define nignore class_count[C_IGNORE]
#define nsyncerrors class_count[C_SYNC]
#define ndiscard class_count[C_DISCARD]
#define nnonspec class_count[C_NONSPEC]
#define nthisfile class_count[C_THISFILE]
#define nnulled class_count[C_NULLED]
#define ntrue class_count[C_TRUE]
#define ndupl class_count[C_DUPL]
#define TOTHEFILE 1
#define TOSTDOUT 2
extern FILE *errorfile;
extern FILE *queryfile;
extern char *currentfilename;
extern char *processname;
extern char *scriptname;
extern boolean query;
extern boolean terse;
int inquire(char *format, ...);
#define Q_NO 1
#define Q_no 2
#define Q_YES 3
#define Q_yes 4
int probethisfile(char *name);
#define F_NOTEXIST 1
#define F_NOTREAD 2
#define F_NOTWRITE 3
#define F_TOUCHIT 4
struct lang_desc {
char *lang_name;
char *lang_incomment;
char *lang_outcomment;
};
extern struct lang_desc lang_table[];
#define CINCOMMENT "/*###"
#define COUTCOMMENT "%%%*/\n"
#define FINCOMMENT "C###"
#define FOUTCOMMENT "%%%\n"
#define NEWLINE "%%%\n"
#define PIINCOMMENT "(*###"
#define PIOUTCOMMENT "%%%*)\n"
#define LISPINCOMMENT ";###"
#define ASINCOMMENT "####"
#define RIINCOMMENT CINCOMMENT
#define RIOUTCOMMENT COUTCOMMENT
#define TROFFINCOMMENT ".\\\"###"
#define TROFFOUTCOMMENT NEWLINE
#define MOD2INCOMMENT "(*###"
#define MOD2OUTCOMMENT "%%%*)\n"
#define IG_FILE1 "llib-port"
#define IG_FILE2 "/usr/lib/llib-port"
#define ERRORNAME "/.errorrc"
extern int nignored;
extern char **names_ignored;
typedef struct edesc Edesc;
typedef Edesc *Eptr;
struct edesc {
Eptr error_next;
int error_lgtext;
char **error_text;
Errorclass error_e_class;
Errorclass error_s_class;
int error_language;
int error_position;
int error_line;
int error_no;
};
extern int nerrors;
extern Eptr er_head;
extern Eptr *errors;
extern int nfiles;
extern Eptr **files;
extern boolean *touchedfiles;
extern int langauge;
extern char *currentfilename;
void *Calloc(int nelements, int size);
char *strsave(char *instring);
char lastchar(char *string);
char firstchar(char *string);
char next_lastchar(char *string);
char **wordvsplice(int emptyhead, int wordc, char **wordv);
int wordvcmp(char **wordv1, int wordc, char **wordv2);
boolean persperdexplode(char *string, char **r_perd, char **r_pers);
char *plural(int n);
char *verbform(int n);
void erroradd(int errorlength, char **errorv, Errorclass errorclass,
Errorclass errorsubclass);
void eaterrors(int *r_errorc, Eptr **r_errorv);
void wordvbuild(char *string, int *r_wordc, char ***r_wordv);
void wordvprint(FILE *fyle, int wordc, char *wordv[]);
void printerrors(boolean look_at_subclass, int errorc, Eptr errorv[]);
void clob_last(char *string, char newstuff);
void arrayify(int *e_length, Eptr **e_array, Eptr header);
void getignored(char *auxname);
void filenames(int nfiles, Eptr **files);
void findfiles(int nerrors, Eptr *errors, int *r_nfiles, Eptr ***r_files);
void onintr(int sig);
boolean touchfiles(int nfiles, Eptr **files, int *r_edargc, char ***r_edargv);
Errorclass discardit(Eptr errorp);
char *substitute(char *string, char chold, char chnew);
int position(char *string, char ch);
#ifdef __cplusplus
}
#endif
#endif