Skip to content Skip to sidebar Skip to footer
Showing posts with the label Union

Equivalent C Union In Python?

Say I'm having a following code in C union u_type { uint32_t data; uint8_t chunk[4]; }… Read more Equivalent C Union In Python?

Serializing Ctype Union

Is there a way to serialized ctype unions in order to send them over sockets? I’m trying to send a … Read more Serializing Ctype Union