aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ast.h
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-03-15 18:38:20 +0900
committernsfisis <nsfisis@gmail.com>2026-03-15 18:45:06 +0900
commitc94f0562b8a0169438dccaea7d02f2b34c6f7795 (patch)
tree2d6f0d0f3f3130eabe457738c3e14d3ee35222f7 /src/ast.h
parentf9792819290703d59c855f96bad661de5104c3aa (diff)
downloadducc-c94f0562b8a0169438dccaea7d02f2b34c6f7795.tar.gz
ducc-c94f0562b8a0169438dccaea7d02f2b34c6f7795.tar.zst
ducc-c94f0562b8a0169438dccaea7d02f2b34c6f7795.zip
wip
Diffstat (limited to 'src/ast.h')
-rw-r--r--src/ast.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ast.h b/src/ast.h
index 0749420..94d3b5d 100644
--- a/src/ast.h
+++ b/src/ast.h
@@ -310,6 +310,9 @@ typedef struct {
typedef struct {
const char* name;
+ bool is_bitfield;
+ int bitfield_offset;
+ int bitfield_width;
} StructMemberNode;
typedef struct {