rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Sat, 02 Nov 2019 17:00:40 +0100
changeset 15502 ad9fe7dc2ff7
parent 14435 a1613788130d
permissions -rw-r--r--
ClimbHome: Remove uncommented code

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