1
0
Fork 0
mirror of https://forgejo.ellis.link/continuwuation/continuwuity.git synced 2025-07-29 03:08:31 +00:00
continuwuity/src/core/alloc/default.rs
2024-06-02 12:34:05 -04:00

9 lines
253 B
Rust

//! Default allocator with no special features
/// Always returns the empty string
#[must_use]
pub fn memory_stats() -> String { String::default() }
/// Always returns the empty string
#[must_use]
pub fn memory_usage() -> String { String::default() }