rust/physfs-rs/src/lib.rs
author Anton Malmygin <antonc27@mail.ru>
Sun, 12 May 2019 17:00:01 +0200
changeset 14927 b3890f4311f7
parent 14440 a1613788130d
permissions -rw-r--r--
Fix clang C compilation

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