rust/physfs-rs/src/lib.rs
author alfadur
Tue, 16 Apr 2019 00:07:15 +0300
changeset 14812 b2beb784e4b5
parent 14440 a1613788130d
permissions -rw-r--r--
add support for multiple ping probes

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