rust/physfs-rs/src/lib.rs
author unC0Rr
Tue, 31 Dec 2024 15:19:43 +0100
changeset 16054 629d5123a979
parent 14435 a1613788130d
permissions -rw-r--r--
Merge transitional_engine branch into 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;