rust/physfs-rs/src/lib.rs
author Anton Malmygin <antonc27@mail.ru>
Thu, 16 May 2019 21:26:27 +0200
changeset 14976 9719a998670b
parent 14440 a1613788130d
permissions -rw-r--r--
Merge pull request #63 from hedgewars/ci-patch-osx-server Update hedgewars-server.cabal

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