rust/physfs-rs/src/lib.rs
author nemo
Thu, 23 Mar 2023 16:20:41 -0400
changeset 15963 c69ced643c10
parent 14456 a1613788130d
permissions -rw-r--r--
also these

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