blob: 3431ba8de9378faa10d49550606e1d5c3943509f (
plain) (
tree)
|
|
#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;
}
|