rust/physfs-rs/src/lib.rs
author unC0Rr
Thu, 22 Oct 2020 12:50:24 +0200
changeset 15753 72f735c03fec
parent 14435 a1613788130d
permissions -rw-r--r--
Fix some problems caught by C compiler

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