59fb926070
git-svn-id: http://svn.code.sf.net/p/utfcpp/code@19 a809a056-fc17-0410-9590-b4f493f8b08e
21 lines
399 B
C++
21 lines
399 B
C++
#include <iostream>
|
|
using namespace std;
|
|
|
|
inline void check_impl (bool condition, const char* file, int line)
|
|
{
|
|
if (!condition) {
|
|
cout << "Check Failed! File: " << file << " Line: " << line << '\n';
|
|
}
|
|
}
|
|
|
|
#define check(c) check_impl(c, __FILE__, __LINE__);
|
|
|
|
#include "r1_0Beta1/invalidutf8.h"
|
|
|
|
int main()
|
|
{
|
|
//r1_0Beta1/invalidutf8.h
|
|
id_1524459();
|
|
id_1525236();
|
|
id_1528369();
|
|
}
|