rust/physfs-rs/src/lib.rs
author unc0rr
Thu, 13 Dec 2018 23:44:46 +0100
changeset 14435 a1613788130d
permissions -rw-r--r--
Adopt physfs-rs lib and adapt it to recent std library, remove global mutex

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