survex_rs/
survex.rs

1//! Unsafe Rust bindings to the Survex `img.c` library
2//!
3//! The functions, constants and structs contained within this module are direct bindings to
4//! `img.c` and `img.h` from the [Survex project](https://github.com/ojwb/survex). For more
5//! information about their function, refer to the source code for the aforementioned files
6//! within the Survex repository.
7
8#![allow(non_upper_case_globals)]
9#![allow(non_camel_case_types)]
10#![allow(non_snake_case)]
11#![allow(dead_code)]
12#![allow(clippy::upper_case_acronyms)]
13include!(concat!(env!("OUT_DIR"), "/bindings.rs"));