You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
296 B

#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);
}