rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Mon, 27 May 2019 00:04:40 +0200
changeset 15070 39067b45d0fc
parent 14440 a1613788130d
permissions -rw-r--r--
Backed out changeset 96244def1cc0—It was broken

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