rust/physfs-rs/src/lib.rs
author alfadur <mail@none>
Mon, 23 Dec 2019 18:11:15 +0300
changeset 15543 1fcce8feace4
parent 14456 a1613788130d
permissions -rw-r--r--
lost the anteroom

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