libfringe/src/stack.rs

5 lines
84 B
Rust

pub trait Stack {
fn top(&mut self) -> *mut u8;
fn limit(&self) -> *const u8;
}