rust/physfs-rs/src/lib.rs
author unC0Rr
Fri, 22 Nov 2024 17:29:48 +0100
branchtransitional_engine
changeset 16041 fc5258d7ecb2
parent 14435 a1613788130d
permissions -rw-r--r--
Make AI less annoying

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