rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Sat, 12 Jan 2019 06:38:20 +0100
changeset 14564 da2094316dd7
parent 14440 a1613788130d
permissions -rw-r--r--
Frontend: More button padding tweaking

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