Blob Blame History Raw
/**************************************************************/
/*  treebnf: a tree oriented bnf library                      */
/*  Copyright (C) 2024  SysDeer Technologies, LLC             */
/*  Released under GPLv2 and GPLv3; see COPYING.TREEBNF.      */
/**************************************************************/

#include <treebnf/treebnf.h>

#define TBNF_UNUSED_PARAMETER(p) (void)p

int main(int argc, char ** argv, char ** envp)
{
	TBNF_UNUSED_PARAMETER(argc);
	return tbnf_main(argv,envp,0);
}