Guest User

Untitled

a guest
Jul 19th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.36 KB | None | 0 0
  1. struct st_dstconfig {
  2.   int utcoffset;
  3.   byte dstoffset;
  4.  
  5.   char daylight[5];
  6.   byte begin_month;
  7.   byte begin_week;
  8.   byte begin_day;
  9.   byte begin_hour;
  10.  
  11.   char standard[5];
  12.   byte end_month;
  13.   byte end_week;
  14.   byte end_day;
  15.   byte end_hour;
  16. };
  17.  
  18.  
  19. struct st_dstconfig dst =   {
  20.     1200, 1,
  21.     "NZDT", 9, -1, 1, 2,
  22.     "NZST", 4,  1, 1, 3
  23.   };
Add Comment
Please, Sign In to add comment