rust/physfs-rs/src/lib.rs
author nemo
Sun, 16 Dec 2018 10:42:50 -0500
changeset 14460 3897da404301
parent 14435 a1613788130d
permissions -rw-r--r--
if a script is set, feature size can generate different maps

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