x42ltc_sys/lib.rs
1// x42ltc-sys: src/lib.rs
2//
3// Copyright 2019-2020 Johannes Maibaum <jmaibaum@gmail.com>
4//
5// This file is free software; you can redistribute it and/or modify it
6// under the terms of the GNU Lesser General Public License as
7// published by the Free Software Foundation; either version 3 of the
8// License, or (at your option) any later version.
9//
10// This file is distributed in the hope that it will be useful, but
11// WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13// Lesser General Public License for more details.
14//
15// You should have received a copy of the GNU Lesser General Public
16// License along with this program. If not, see <http://www.gnu.org/licenses/>.
17//
18// SPDX-License-Identifier: LGPL-3.0-or-later
19#![allow(non_camel_case_types)]
20#![allow(non_snake_case)]
21#![allow(clippy::too_many_arguments)]
22#![allow(clippy::upper_case_acronyms)]
23#![allow(clippy::useless_transmute)]
24
25//! # bindgen commandline
26//!
27//! The following commandline was used to create the initial bindings:
28//!
29//! ```console
30//! bindgen vendor/src/ltc.h -o src/bindings.rs --with-derive-defaults
31//! ```
32include!("./bindings.rs");