rust/physfs-rs/src/lib.rs
author unC0Rr
Tue, 05 Sep 2023 17:01:46 +0200
branchtransitional_engine
changeset 16007 96d0e6149d3d
parent 14435 a1613788130d
permissions -rw-r--r--
Fix type

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