fcft_sys/lib.rs
1//! Raw bindings to [fcft](https://codeberg.org/dnkl/fcft).
2//!
3//! Exposes `fcft_*`/`FCFT_*`, and a minimal set of necessary pixman functions.
4
5#![allow(non_upper_case_globals)]
6#![allow(non_camel_case_types)]
7#![allow(non_snake_case)]
8#![allow(unsafe_op_in_unsafe_fn)]
9#![allow(clippy::all)]
10
11include!(concat!(env!("OUT_DIR"), "/bindings.rs"));