blob: d73301161d5ebd5c600f1606093db3ace0e5ec69 [file] [log] [blame]
Brian Silverman4e662aa2022-05-11 23:10:19 -07001// Copyright 2020 Google LLC
2//
3// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
6// option. This file may not be copied, modified, or distributed
7// except according to those terms.
8
9pub(crate) mod abstract_types;
10pub(crate) mod allocators;
11pub(crate) mod casts;
12pub(crate) mod constructor_deps;
13pub(crate) mod ctypes;
14pub(crate) mod deps;
15mod depth_first;
16mod doc_label;
17pub(crate) mod fun;
18pub(crate) mod gc;
19mod name_check;
20pub(crate) mod pod; // hey, that rhymes
21pub(crate) mod remove_ignored;
22mod replace_hopeless_typedef_targets;
23pub(crate) mod tdef;
24mod type_converter;
25
26pub(crate) use name_check::check_names;
27pub(crate) use replace_hopeless_typedef_targets::replace_hopeless_typedef_targets;
28pub(crate) use type_converter::PointerTreatment;