rust/physfs-rs/src/lib.rs
author nemo
Wed, 19 Dec 2018 19:00:29 -0500
changeset 14497 f86bd14a7613
parent 14456 a1613788130d
permissions -rw-r--r--
remove if disabled in main config

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