rust/physfs-rs/src/lib.rs
author Wuzzy <Wuzzy2@mail.ru>
Thu, 16 May 2019 21:15:07 +0200
changeset 14982 1e21dfd7f9b5
parent 14440 a1613788130d
permissions -rw-r--r--
CTF_Blizzard: Fix the mission text, remove string concatenation stuff

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