rust/physfs-rs/src/lib.rs
author nemo
Tue, 19 Nov 2019 08:35:32 -0500
changeset 15508 dfdd0db89760
parent 14435 a1613788130d
permissions -rw-r--r--
oups. forgot "convert" creates a white background by default

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