rust/physfs-rs/src/lib.rs
author nemo
Thu, 15 Aug 2019 16:07:57 -0400
changeset 15347 136023417164
parent 14456 a1613788130d
permissions -rw-r--r--
just to make it build against nightly

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