rust/physfs-rs/src/lib.rs
author nemo
Mon, 19 Aug 2019 09:11:49 -0400
changeset 15339 cf4a9632e649
parent 14435 a1613788130d
permissions -rw-r--r--
merge

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