rust/physfs-rs/src/lib.rs
author unc0rr
Fri, 26 Apr 2019 23:21:58 +0200
changeset 14842 ef9630519491
parent 14435 a1613788130d
permissions -rw-r--r--
Fix some minor problems with new frontend code

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