rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Fri, 14 Dec 2018 01:55:42 +0100
changeset 14450 12940929cb66
parent 14440 a1613788130d
permissions -rw-r--r--
Start first turn in ACF5 even faster

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