11 lines
120 B
C
11 lines
120 B
C
|
#ifndef _error_h
|
||
|
#define _error_h
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
void error(std::string msg);
|
||
|
|
||
|
void stop(std::string msg);
|
||
|
|
||
|
#endif
|