summaryrefslogblamecommitdiffstats
path: root/main.c
blob: 3431ba8de9378faa10d49550606e1d5c3943509f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                       
#include "util.h"
#include "parser.h"

recipe ** cookbook;

int
main(int argc, char * argv[])
{
  fdebug("--- Debug mode is on ---\n");
  recipe * r = parse(argv[1], NULL);
  if (r) tojson(r);
  free_recipe(r);
  return 0;
}