Skip to content

Commit

Permalink
Create types.hc
Browse files Browse the repository at this point in the history
  • Loading branch information
dpkg123 authored Oct 26, 2024
1 parent cbc2b79 commit a5f6ef9
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions example/types.hc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
U8i union U8 {
};
I8i union I8 {
};
U16i union U16 {
I8i i8[2];
U8i u8[2];
};
I16i union I16 {
I8i i8[2];
U8i u8[2];
};
U32i union U32 {
I8i i8[4];
U8i u8[4];
I16i i16[2];
U16i u16[2];
};
I32i union I32 {
I8i i8[4];
U8i u8[4];
U16i u16[2];
I16i i16[2];
};

0 comments on commit a5f6ef9

Please sign in to comment.