rust/physfs-rs/src/lib.rs
author unc0rr
Mon, 10 Apr 2023 20:53:42 +0200
changeset 15950 77f1973611ec
parent 14435 a1613788130d
permissions -rw-r--r--
Refactor const names in uScript, no logic change

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