Turn this C struct ```c struct foo_bar { int bazBolly; }; ``` into ```rust #[repr(C)] struct FooBar { baz_bolly: std::os::raw::c_int, } ``` We could use the `heck` crate. The hard part will be dealing with name clashes correctly.