• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 struct Date {
2     unsigned char day: 5;
3     unsigned char month: 4;
4     signed short year: 15;
5 } __attribute__((packed));
6