safa-api 0.4.3

A high-level API over SafaOS's syscalls
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Module for process-related high-level functions over process related syscalls
//!
//! Such as api initialization functions [`init::_c_api_init`] and [`init::sysapi_init`], environment variables, and process arguments
//!
//! FIXME: this module should not be used when `std` feature is enabled, as it conflicts with the standard library's api dependency
//! I should probably hide this when `std` feature is enabled.

pub mod args;
pub mod env;
#[cfg(not(feature = "std"))]
pub mod init;
pub mod stdio;