rust/physfs-rs/src/lib.rs
author nemo
Sat, 19 Oct 2019 09:34:37 -0400
changeset 15478 ea8fce926e4d
parent 14435 a1613788130d
permissions -rw-r--r--
256x256 png and xpm of hedgehog.svg

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