rust/physfs-rs/src/lib.rs
author unc0rr
Tue, 04 Jun 2019 22:34:42 +0200
changeset 15141 febccab419b1
parent 14456 a1613788130d
permissions -rw-r--r--
Apply dos2unix to rust sources

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