rust/physfs-rs/src/lib.rs
author unC0Rr
Tue, 22 Aug 2023 08:35:46 +0200
branchtransitional_engine
changeset 15975 2146cb7be36f
parent 14435 a1613788130d
permissions -rw-r--r--
Merge default

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