How annoying is it to call C code from Rust? Do I have to write a wrapper for every single function?

(That's one of the things we love about Swift, it does that automatically, but I don't know if that's common.)

@Frost
C FFI from Rust isnt too hard and pretty well documented, I'd start here https://doc.rust-lang.org/nomicon/ffi.html
FFI - The Rustonomicon

The Dark Arts of Advanced and Unsafe Rust Programming

@venko Thanks! ^^

...that... looks like it's gonna require us to write a wrapper for every single function, yeah. Wherf.

I'm searching for stuff and hearing whisperings of something called "bindgen"...