mini-c-parser 0.1.4

minimal C language lexer & parser & executer from scratch
1
2
3
4
5
6
7
8
9
pub(crate) mod character;
pub(crate) mod identifier;
pub(crate) mod numeric;
pub(crate) mod string;
pub(crate) mod token;
pub(crate) mod tokenize;
pub(crate) mod trie;

pub use token::Token;