I have a header file lets say greetings.h:
include <hello.h>;
include <bye.h>;
include <hola.h>;
...
Im using bindgen in rust to generate those file from c header to rust.
But I want to ignore generating the include <hola.h> header and generate the greeting.h only with helllo.h and bye.h.
I have searched it in docs.rs bindgen documentation but not found any hint on that.
or is there any option to do that with clang