Is there a clean way of casting a struct into an uint64_t or any other int, given that struct in <= to the sizeof int? The only thing I can think of is only an 'ok' solution - to use unions. However I have never been fond of them.
Let me add a code snippet to clarify:
typedef struct {
uint8_t field: 5;
uint8_t field2: 4;
/* and so on... */
}some_struct_t;
some_struct_t some_struct;
//init struct here
uint32_t register;
Now how do i cast some_struct to capture its bits order in uint32_t register.
Hope that makes it a bit clearer.
memcpy
is in fact the only way to do it portably (i.e. according to standard) and alignment dependent. Even if old compilers sometimes were buggy in that regard (gcc 3.3 on SPARC didn't handle it correctly with option -O3). – Harumscarum