rust/physfs-rs/src/lib.rs
author alfadur
Wed, 11 Mar 2020 23:20:15 +0300
changeset 15570 e1c2ca38e511
parent 14456 a1613788130d
permissions -rw-r--r--
remove canhazslicepatterns

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