source: UsbWattMeter/trunk/lwip-1.4.1/ports/ccrx/sys/time.h@ 167

Last change on this file since 167 was 167, checked in by coas-nagasima, 8 years ago

MIMEにSJISを設定

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-chdr; charset=SHIFT_JIS
File size: 282 bytes
RevLine 
[164]1
2#ifndef _SYS_TIME_H
3#define _SYS_TIME_H
4
5struct tm {
6 int tm_sec;
7 int tm_min;
8 int tm_hour;
9 int tm_mday;
10 int tm_mon;
11 int tm_year;
12 int tm_wday;
13 int tm_yday;
14 int tm_isdst;
15 long tm_gmtoff;
16 char *tm_zone;
17};
18
19#endif /* _SYS_TIME_H */
Note: See TracBrowser for help on using the repository browser.