rust/physfs-rs/src/lib.rs
author alfadur
Tue, 06 Aug 2019 23:47:02 +0300
changeset 15302 9299f43ba0ec
parent 14435 a1613788130d
permissions -rw-r--r--
disallow placing girders over airmines and moving hogs

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