add c_int to type_deducer.py

This commit is contained in:
2025-11-22 13:36:21 +05:30
parent 081ee5cb4c
commit a2de15fb1e

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)),
}