Sign in
third-party-mirror
/
cbindgen
/
9a26cd0114a633fa05ece30bd3f1b13149f496f2
/
.
/
cbindgen-0.24.5
/
tests
/
expectations
/
bitfield.both.c
blob: 7505f464fec9e0593e1ba65dff12e47d6a18e8a2 [
file
] [
log
] [
blame
]
#include
<stdarg.h>
#include
<stdbool.h>
#include
<stdint.h>
#include
<stdlib.h>
typedef
struct
HasBitfields
{
uint64_t
foo
:
8
;
uint64_t
bar
:
56
;
}
HasBitfields
;
void
root
(
const
struct
HasBitfields
*);