rust/physfs-rs/src/lib.rs
author spudpiggy <facetakers@gmail.com>
Fri, 05 Apr 2024 07:37:44 +0100
changeset 16005 1fd65aad285d
parent 14435 a1613788130d
permissions -rw-r--r--
Fixed grammar, and reworded a few sentences to sound better.

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