rust/physfs-rs/src/lib.rs
author sheepluva
Sun, 08 Dec 2019 00:07:24 +0100
branchhedgeroid
changeset 15536 f90255a3454c
parent 14456 a1613788130d
permissions -rw-r--r--
hedgeroid: adjust module names (SDL_* -> SDL2_*)

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