fixed_point_math/
lib.rs

1#![no_std]
2
3pub const STROOP: u64 = 1_0000000;
4
5pub mod i128;
6pub mod u64;
7
8mod fixed_point;
9pub use fixed_point::FixedPoint;