Sean1708 / rusty-cheddar

A Rust crate for automatically generating C header files from Rust source file.
http://sean1708.github.io/rusty-cheddar/
191 stars 25 forks source link

Type conversions are syntactic #50

Open solidsnack opened 7 years ago

solidsnack commented 7 years ago

use libc; ... libc::c_char becomes char but use libc::c_char; ... c_char becomes c_char. I guess the path check uses the literal textual form?

https://github.com/Sean1708/rusty-cheddar/blob/1654acd2df7ece1db7208c04069932e2004b5615/src/types.rs#L137