rust/physfs-rs/src/lib.rs
author alfadur
Fri, 26 Jun 2020 19:35:16 +0300
changeset 15662 8416b08ffdbb
parent 14456 a1613788130d
permissions -rw-r--r--
add sentry walking cycle

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