#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <math.h>
#include "EXIParser.h"
#include "EXISerializer.h"
#include "stringManipulate.h"
#include "grammarGenerator.h"
Go to the source code of this file.
|
size_t | writeFileOutputStream (void *buf, size_t readSize, void *stream) |
|
void | _error (int lineno, const char *msg) |
|
void | _error2 (int lineno, const char *msg, int code) |
|
int | main (int argc, char *argv[]) |
|
#define BUFFER_SIZE 30000000 |
#define error |
( |
|
msg) | |
_error(__LINE__, msg) |
#define error2 |
( |
|
msg, |
|
|
|
code |
|
) |
| _error2(__LINE__, msg, code) |
#define EXIP_STRING |
( |
|
str) | |
{(char*)str, sizeof(str)-1} |
void _error |
( |
int |
lineno, |
|
|
const char * |
msg |
|
) |
| |
void _error2 |
( |
int |
lineno, |
|
|
const char * |
msg, |
|
|
int |
code |
|
) |
| |
int main |
( |
int |
argc, |
|
|
char * |
argv[] |
|
) |
| |
static END_TEST size_t writeFileOutputStream |
( |
void * |
buf, |
|
|
size_t |
readSize, |
|
|
void * |
stream |
|
) |
| |