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