c2nim is a tool to translate Ansi C code to Nim. The output is human-readable Nim code that is meant to be tweaked by hand before and after the translation process.
Since this tool is being used to interface with C and C++ libraries, we can't afford that whole "we'll change the C standard in our leaky abstraction" silliness, so what is an unsigned integer in C should be the same in the Nim wrapper.
Since this tool is being used to interface with C and C++ libraries, we can't afford that whole "we'll change the C standard in our leaky abstraction" silliness, so what is an unsigned integer in C should be the same in the Nim wrapper.
Relevant Nim silliness: https://github.com/nim-lang/Nim/issues/12187