Files
lt16lab/assembler/inc/msg.h
Thomas Fehmel 657a54ba18 Initial Commit
2016-10-18 14:21:45 +02:00

22 lines
309 B
C

/*
* This file declares functions for
* - checking instruction parameters for range
*/
#ifndef MSG_H_
#define MSG_H_
/*
* verbose output (if flag is set)
* msg: verbose message
*/
void yyverbose(char* msg);
/*
* error handler
* msg: error message
*/
void yyerror(char* msg);
#endif /* MSG_H_ */