rust/physfs-rs/src/lib.rs
author nemo
Fri, 11 Jan 2019 08:08:28 -0500
changeset 14554 397b2f4502c1
parent 14435 a1613788130d
permissions -rw-r--r--
couple more use after frees for gear deletion. also rearranged lines a bit and added a redundant exit to try to proof things a bit. more evidence we need rust.

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