summaryrefslogtreecommitdiff
path: root/src/treebnf.c
blob: fa73ecc01ccdbdb9f3d2e296e7694c95c2aa93c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**************************************************************/
/*  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);
}