rust/physfs-rs/src/lib.rs
author GunChleoc
Fri, 21 Jun 2019 20:08:05 +0200
changeset 15187 2e1253771108
parent 14435 a1613788130d
permissions -rw-r--r--
Update Scottish Gaelic translation (frontend)

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