rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Thu, 31 Oct 2019 18:54:45 +0100
changeset 15496 89c3b6db9605
parent 14435 a1613788130d
permissions -rw-r--r--
Update Frontend+Lua locale files

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