rust/physfs-rs/src/lib.rs
author alfadur
Wed, 19 Jun 2019 01:19:10 +0300
changeset 15179 e705ac360785
parent 14440 a1613788130d
permissions -rw-r--r--
pin removed clients until the output buffer is flushed

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