rust/physfs-rs/src/lib.rs
author sheepluva
Sat, 07 Dec 2019 23:58:37 +0100
branchhedgeroid
changeset 15535 f0bf14ead75c
parent 14456 a1613788130d
permissions -rw-r--r--
hedgeroid: adjust build.xml: fix app name; set java version; print hint if sdk build.xml is missing

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