rust/physfs-rs/src/lib.rs
author yuenfu
Fri, 19 Apr 2019 17:54:32 +0200
changeset 14820 7443fd5b416c
parent 14440 a1613788130d
permissions -rw-r--r--
Update Chinese (zh_CN, zh_TW) translation: Frontend and engine

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