libyaml_sys/
lib.rs

1//! Low-level bindings for the [LibYAML] library.
2//!
3//! Please see the LibYAML [C API documentation] for function descriptions.
4//!
5//! [LibYAML]: https://github.com/yaml/libyaml
6//! [C API documentation]: https://pyyaml.org/wiki/LibYAML
7
8#![allow(non_camel_case_types, non_snake_case, non_upper_case_globals)]
9
10include!("../src-generated/bindings.rs");