rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Fri, 21 Dec 2018 20:31:21 +0100
changeset 14496 8db03d9bc6e9
parent 14435 a1613788130d
permissions -rw-r--r--
Reduce skipping craziness in ASA fruit02 a bit

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