-
I guess bitfields are not yet handled by DStep: certainly the bitfields in libdvbv5 header files do not seem to map to anything looking like a bitfield in D.
The current problem I have though is th…
-
### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/kvrocks/issues) and found no similar issues.
### Version
Docker Image SHA:707f93473e7265df39593d38d83…
-
### Expected Behavior
No compilation error
### Current Behavior
Structures containing bitfields give the compile errors below, packing seems to make no difference (was not expecting it to make an…
-
Thank you for this great library. I just wanted to report that arrays, unions and bitfields are all not working and causing compilation issues.
I can imagine supporting any of these 3 might be hard, …
-
# Feature or enhancement
I believe the next step toward untangling `ctypes` should be switching `cfield.c` to be based on fixed-width integer types.
This should be a pure refactoring, without user-vi…
-
As far as I can make out with my tests there is no support for bitfield `struct` serialization in Alpaca. Is there any way to achieve this, and give a standardized method to implement it for a large n…
-
**Describe the bug**
The current scripts/checkpatch.pl script give a false positive spacing error for the following, valid and correct, declaration:
```
typedef union some_register {
str…
-
```c
struct Test {
unsigned foobar : 1;
};
```
```zig
pub const struct_Test = @OpaqueType();
```
ghost updated
2 months ago
-
A simple way to acces fields of a bitfield would be usefull.
```
cstruct some_struct {
uint2_t field1;
uint6_t field2;
uint8_t some_byte;
uint16_t rest
} as little_endian
```
-
Hey, thanks for the great crate!
It would be neat if there was a failable version, for cases when an enumeration with an integral `repr` doesn't use the full range (some bit patterns are invalid). …