rust/physfs-rs/src/lib.rs
author alfadur
Fri, 28 Jan 2022 02:33:44 +0300
changeset 15851 d5e6c8c92d87
parent 14456 a1613788130d
permissions -rw-r--r--
add direct access to gear data

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