rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Sat, 15 Jun 2019 18:51:04 +0200
changeset 15157 490bd70dac6e
parent 14435 a1613788130d
permissions -rw-r--r--
Drawn maps: Fix off-by-one errors in land erasing code

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