rust/physfs-rs/src/lib.rs
author unC0Rr
Thu, 01 Dec 2022 14:23:48 +0100
changeset 15897 7f3d7f015aa5
parent 14435 a1613788130d
permissions -rw-r--r--
Improve performance of CheckGearNear

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