16 lines
252 B
C
16 lines
252 B
C
#ifndef ERRORMSG_H
|
|
#define ERRORMSG_H
|
|
|
|
#include "util.h"
|
|
extern bool EM_anyErrors;
|
|
|
|
void EM_newline(void);
|
|
|
|
extern int EM_tokPos;
|
|
|
|
void EM_error(int, string, ...);
|
|
void EM_impossible(string, ...);
|
|
void EM_reset(string filename);
|
|
|
|
#endif // !ERRORMSG_H
|