rust/physfs-rs/src/lib.rs
author unC0Rr
Tue, 03 Dec 2024 16:23:30 +0100
branchtransitional_engine
changeset 16047 5167de4b52c2
parent 14435 a1613788130d
permissions -rw-r--r--
Add the template to selection

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