rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Thu, 11 Jul 2019 22:31:29 +0200
changeset 15258 5c91c5191085
parent 14456 a1613788130d
permissions -rw-r--r--
Give snorkel to air plane pilot in weSea

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