diff options
author | midipix <writeonce@midipix.org> | 2024-04-28 18:11:28 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-05-07 19:46:58 +0000 |
commit | e536db6d1fffb429033b7f0557bd3f123c2f0e86 (patch) | |
tree | 1d41767284265641cdf22fc43b5a5508c7a438e8 /src/treebnf.c | |
parent | 1b64c0ca9f6438c5bb35f34a46344030b61b789a (diff) | |
download | treebnf-e536db6d1fffb429033b7f0557bd3f123c2f0e86.tar.bz2 treebnf-e536db6d1fffb429033b7f0557bd3f123c2f0e86.tar.xz |
project: created skeleton.
Diffstat (limited to 'src/treebnf.c')
-rw-r--r-- | src/treebnf.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/treebnf.c b/src/treebnf.c new file mode 100644 index 0000000..0b9862a --- /dev/null +++ b/src/treebnf.c @@ -0,0 +1,15 @@ +/**************************************************************/ +/* treebnf: a tree oriented bnf library */ +/* Copyright (C) 2024 SysDeer Technologies, LLC */ +/* Released under GPLv2 and GPLv3; see COPYING.TREEBNF. */ +/**************************************************************/ + +#define TBNF_UNUSED_PARAMETER(p) (void)p + +int main(int argc, char ** argv, char ** envp) +{ + TBNF_UNUSED_PARAMETER(argc); + TBNF_UNUSED_PARAMETER(argv); + TBNF_UNUSED_PARAMETER(envp); + return 0; +} |