rust/physfs-rs/src/lib.rs
author alfadur
Wed, 21 Oct 2020 18:55:26 +0300
changeset 15751 a4558e2be08c
parent 14435 a1613788130d
permissions -rw-r--r--
add more const qualifiers to maintain a semblance of activity

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