rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Thu, 13 Jun 2019 15:07:03 +0200
changeset 15140 7a8cc8bc963e
parent 14440 a1613788130d
permissions -rw-r--r--
Clear jump and walk msgs after placement

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