clip/
lib.rs

1// A commandline parsing tool without alloc or std crates!
2#![no_std]
3
4
5mod arg;
6pub use arg::{NUM_VALUES, Arg, Values, args};
7
8mod app;
9pub use app::{NUM_ARGS, App};