diff options
author | midipix <writeonce@midipix.org> | 2024-05-15 20:40:33 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-05-15 20:40:33 +0000 |
commit | c257188cd912503371db1c2b7b2c59b4fd53df1c (patch) | |
tree | 8077d9f09fa85521f53a94f3fa33d17a7975a11c /src/internal | |
parent | ae7810f56e1daa1d2e35c06969c26835c1ed7800 (diff) | |
download | treebnf-c257188cd912503371db1c2b7b2c59b4fd53df1c.tar.bz2 treebnf-c257188cd912503371db1c2b7b2c59b4fd53df1c.tar.xz |
regex module: implemented token scanners, added definitions and scan table.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/treebnf_regex_impl.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/internal/treebnf_regex_impl.h b/src/internal/treebnf_regex_impl.h new file mode 100644 index 0000000..c5612ae --- /dev/null +++ b/src/internal/treebnf_regex_impl.h @@ -0,0 +1,6 @@ +#ifndef TREEBNF_REGEX_IMPL_H +#define TREEBNF_REGEX_IMPL_H + +extern struct tbnf_scan_tbl * tbnf_regex_scan_tbl[]; + +#endif |