rust/physfs-rs/src/lib.rs
author nemo
Sun, 16 Dec 2018 10:35:43 -0500 (2018-12-16)
changeset 14459 35d47e99f5e2
parent 14435 a1613788130d
permissions -rw-r--r--
Same with ShoppaMap
//! 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;