rust/physfs-rs/src/lib.rs
author unc0rr
Sat, 12 Oct 2019 23:13:32 +0200
changeset 15479 e0ab70a90718
parent 14440 a1613788130d
permissions -rw-r--r--
Add utility to convert server-side replay files into hwd binary format

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