AS
Size: a a a
AS
V
V
void int32_to_chars(int n, char *bytes){
bytes[0] = (n >> 24) & 0xFF;
bytes[1] = (n >> 16) & 0xFF;
bytes[2] = (n >> 8) & 0xFF;
bytes[3] = n & 0xFF;
}
AP
AS
void int32_to_chars(int n, char *bytes){
bytes[0] = (n >> 24) & 0xFF;
bytes[1] = (n >> 16) & 0xFF;
bytes[2] = (n >> 8) & 0xFF;
bytes[3] = n & 0xFF;
}
VR
AS
DB
AS
void int32_to_chars(int n, char *bytes){
bytes[0] = (n >> 24) & 0xFF;
bytes[1] = (n >> 16) & 0xFF;
bytes[2] = (n >> 8) & 0xFF;
bytes[3] = n & 0xFF;
}
AP
V
AS
V
V
DB
VR
AP
VR