rust/physfs-rs/src/lib.rs
author Grigory Ustinov <grenka@altlinux.org>
Thu, 26 Sep 2019 19:03:14 +0300
changeset 15428 e0f148794328
parent 14440 a1613788130d
permissions -rw-r--r--
Fix error in russian frontend translation file (thx to alfadur)

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