rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Fri, 10 May 2019 23:50:26 +0200
changeset 14908 8d63c6ce4f7e
parent 14435 a1613788130d
permissions -rw-r--r--
ACF1: Improve backjump explanation

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