Alex 'AdUser' Z
13 years ago
1 changed files with 22 additions and 0 deletions
@ -0,0 +1,22 @@ |
|||||||
|
#include <ctype.h> |
||||||
|
#include <stdbool.h> |
||||||
|
#include <stdio.h> |
||||||
|
#include <stdint.h> |
||||||
|
#include <stdlib.h> |
||||||
|
#include <string.h> |
||||||
|
|
||||||
|
#include <yajl/yajl_parse.h> |
||||||
|
|
||||||
|
/* FD's */ |
||||||
|
FILE *in; |
||||||
|
FILE *out; |
||||||
|
|
||||||
|
int |
||||||
|
main(int argc, char **argv) |
||||||
|
{ |
||||||
|
/* FILE */ in = stdin; |
||||||
|
/* FILE */ out = stdout; |
||||||
|
|
||||||
|
exit(EXIT_SUCCESS); |
||||||
|
} |
||||||
|
|
Loading…
Reference in new issue