rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Tue, 11 Feb 2020 01:33:31 +0100
changeset 15568 6b9655be1e7f
parent 14456 a1613788130d
permissions -rw-r--r--
ACF1: Fix PastMole area being too large

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