rust/physfs-rs/src/lib.rs
author alfadur
Wed, 24 Apr 2019 16:21:46 +0300
changeset 14835 8ddb5842fe0b
parent 14440 a1613788130d
permissions -rw-r--r--
allow running plaintext and tls servers in parallel

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