blob: 4e1bf02abad320b9a0a8f40bf233eb7d759ce88e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* SPDX-License-Identifier: Apache-2.0 */
/*
* Copyright (C) Timo Stark
* Copyright (C) F5, Inc.
*/
#[doc(hidden)]
mod bindings {
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
include!("macros.rs");
include!("rusty.rs");
}
#[doc(no_inline)]
pub use bindings::*;
pub use bindings::luw_http_status_t::*;
|