struct type __packed { int member; ... };
The __packed keyword disables alignment restrictions on a structure. No padding will be added between members.
Be careful with this keyword on architectures that require aligned memory access. |
struct type __packed { int member; ... };
The __packed keyword disables alignment restrictions on a structure. No padding will be added between members.
Be careful with this keyword on architectures that require aligned memory access. |