I’ve got a piece of C code:
Int32 tmp = atoi("314");
It throws an error:
error: Int32 undeclared (first use in this function)
I have no idea why? Could you help me?
Maybe it is problem with #includes:
sys/socket.hnetinet/in.harpa/inet.hstdio.hstdlib.hstring.hstrings.h
There is no standard type called
Int32. You’re probably looking forIf you need a 32-bit integer, the standard type is
int32_tdefined ininttypes.horstdint.h.