Expand description
§Armybox - A #[no_std] BusyBox Clone
Armybox provides Unix utilities in a tiny, #[no_std] compatible binary.
It uses only libc for system calls and alloc for heap allocation.
§Features
- Truly
#[no_std]: No standard library dependency - Tiny binary: ~74KB release, ~33KB with UPX compression
- Embedded-ready: Works on systems without full std support
Modules§
- applets
- Native no_std applet implementations
- io
- Low-level I/O primitives using libc
- sys
- System utilities and helpers
Functions§
- applet_
count - Get applet count
- is_
applet - Check if an applet exists
- run_
applet - Run an applet by name
Type Aliases§
- Applet
Fn - Applet function type