rust/physfs-rs/src/lib.rs
author alfadur
Thu, 27 Jan 2022 03:51:13 +0300
changeset 15828 44b49f255e31
parent 14435 a1613788130d
permissions -rw-r--r--
add type safe power of two sizes

//! 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;