rust/physfs-rs/src/lib.rs
author nemo
Mon, 12 Sep 2022 18:37:04 -0400
branch1.0.0
changeset 15869 ccce86a05f31
parent 14435 a1613788130d
permissions -rw-r--r--
tag a 1.0.2

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