rust/physfs-rs/src/lib.rs
author nemo
Thu, 23 Mar 2023 16:13:04 -0400
changeset 15932 baba5a7090b4
parent 14435 a1613788130d
permissions -rw-r--r--
switch server

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