I've got a question on actually porting C code int...
# kotlin-native
f
I've got a question on actually porting C code into Kotlin code.
Copy code
struct nk_context ctx;
nk_init_fixed(&ctx, calloc(1, MAX_MEMORY), MAX_MEMORY, &font);
This is some C code for the library I'm trying to use (Nuklear). How would I convert that to Kotlin interop code?