Hi, is this library supports bitfields in structs like below? eg. struct Test { int a: 2; int b: 1; int reserved: 29; int c; }
Hi,
is this library supports bitfields in structs like below?
eg.
struct Test {
int a: 2;
int b: 1;
int reserved: 29;
int c;
}