1 Commits

Author SHA1 Message Date
a2de15fb1e add c_int to type_deducer.py 2025-11-22 13:36:21 +05:30

View File

@ -17,6 +17,7 @@ mapping = {
"c_ulong": ir.IntType(64),
"c_longlong": ir.IntType(64),
"c_uint": ir.IntType(32),
"c_int": ir.IntType(32),
# Not so sure about this one
"str": ir.PointerType(ir.IntType(8)),
}