#![deny(missing_abi)]
#[allow(
// docs are not in rust format
rustdoc::bare_urls,
// names are not in a rust style
bad_style,
// don't do clippy lints for generated files
clippy::pedantic,
clippy::style,
clippy::complexity,
clippy::restriction,
)]
mod generated;
pub use generated::*;
pub const UTF8PROC_ERROR_NOMEM: utf8proc_ssize_t = -1;
pub const UTF8PROC_ERROR_OVERFLOW: utf8proc_ssize_t = -2;
pub const UTF8PROC_ERROR_INVALIDUTF8: utf8proc_ssize_t = -3;
pub const UTF8PROC_ERROR_NOTASSIGNED: utf8proc_ssize_t = -4;
pub const UTF8PROC_ERROR_INVALIDOPTS: utf8proc_ssize_t = -5;
impl utf8proc_option_t {
pub const NONE: utf8proc_option_t = utf8proc_option_t(0);
}