#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(improper_ctypes)]
#![allow(deref_nullptr)]
#![allow(clippy::unreadable_literal)]
#![allow(clippy::redundant_static_lifetimes)]
use std::os::raw::{c_short, c_int};
pub type ITEM = tagITEM;
pub type MENU = tagMENU;
pub type RipoffInit = extern "C" fn(*mut WINDOW, c_int) -> c_int;
extern "C" {
pub fn getcchar(_: *const cchar_t, _: *mut wchar_t, _: *mut attr_t, _: *mut c_short, _: *mut c_int) -> c_int;
pub fn ripoffline(_: c_int, _: RipoffInit) -> c_int;
pub fn ripoffline_sp(_: *mut SCREEN, _: c_int, _: RipoffInit) -> c_int;
}
#[cfg(feature = "docs-rs")]
include!(concat!(env!("CARGO_MANIFEST_DIR"), "/build/bindings.rs"));
#[cfg(not(feature = "docs-rs"))]
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));