rust/physfs-rs/src/lib.rs
author unC0Rr
Sat, 18 Jan 2025 16:55:04 +0100
changeset 16057 106674bb21b1
parent 14435 a1613788130d
permissions -rw-r--r--
Revert the idea of using prime number in hedgewars prng

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