kernel/library/std/mod.rs
1//! Standard library module for the kernel and user programs.
2//!
3//! This module serves as the standard library for both the kernel and user programs.
4//! It provides essential functionalities and utilities that are commonly used across
5//! different parts of the system.
6
7pub mod print;
8pub mod defer;
9pub mod string;