rust/physfs-rs/src/lib.rs
author unc0rr
Fri, 28 Dec 2018 22:47:17 +0100
changeset 14505 ba29aa03db87
parent 14435 a1613788130d
permissions -rw-r--r--
Implement letter repeat check

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