14 lines
176 B
C
14 lines
176 B
C
|
|
#include <wchar.h>
|
|
|
|
#include "../struct.h"
|
|
|
|
struct error_statement
|
|
{
|
|
struct statement super;
|
|
|
|
const wchar_t* message;
|
|
|
|
struct statement* substatement;
|
|
};
|
|
|