Browse Source

+ added code skeleton for json2torrent

master
Alex 'AdUser' Z 13 years ago
parent
commit
0108200b8c
  1. 22
      src/json2torrent.c

22
src/json2torrent.c

@ -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…
Cancel
Save