10 lines
238 B
C++
10 lines
238 B
C++
|
#ifndef BLIF_ERROR_H
|
||
|
#define BLIF_ERROR_H
|
||
|
#include <functional>
|
||
|
#include "blifparse.hpp"
|
||
|
namespace blifparse {
|
||
|
|
||
|
void blif_error_wrap(Callback& callback, const int line_no, const std::string& near_text, const char* fmt, ...);
|
||
|
}
|
||
|
#endif
|