rust/physfs-rs/src/lib.rs
author alfadur
Thu, 23 Mar 2023 23:41:26 +0300
changeset 15935 cd3d16905e0e
parent 14435 a1613788130d
permissions -rw-r--r--
add basic ECS benchmark

//! PhysFS bindings for Rust

#![deny(missing_docs)]

extern crate libc;

pub use physfs::*;
pub use physfs::file::*;

/// PhysFS bindings
mod physfs;
/// Definitions for the PhysFS primitives
mod primitives;