rust/physfs-rs/src/lib.rs
author nemo
Tue, 26 Apr 2022 14:35:21 -0400
changeset 15841 e111e5acde64
parent 14435 a1613788130d
permissions -rw-r--r--
make unplaced hogs a bit less interactive

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