#include <stdio.h>
#include "report.h"
+unsigned int errors = 0;
#ifndef __PDOS__
#if defined (_WIN32)
}
#endif
+unsigned int get_error_count (void) {
+ return errors;
+}
+
void report_at (const char *filename, unsigned long line_number, int type, const char *fmt, ...) {
va_list ap;
va_end (ap);
fprintf (stderr, "\n");
+
+ if (type != REPORT_WARNING) {
+ ++errors;
+ }
}
# define COLOR_WARNING 95
#endif
+unsigned int get_error_count (void);
void report_at (const char *filename, unsigned long line_number, int type, const char *fmt, ...);
#endif /* _REPORT_H */