rust/physfs-rs/src/lib.rs
author unc0rr
Sat, 12 Jun 2021 20:15:42 +0200
changeset 15790 efe4e3290870
parent 14435 a1613788130d
permissions -rw-r--r--
Add url bot plugin based on url-bot-rs (only the difference from their repo)

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