rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Mon, 14 Jan 2019 19:26:24 +0100
changeset 14587 164ec37e9e4b
parent 14435 a1613788130d
permissions -rw-r--r--
Rename the special "none" key in frontend

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