Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

time.h 320B

123456789101112131415161718
  1. #ifndef _SYS_TIME_H
  2. #define _SYS_TIME_H
  3. /** @file
  4. *
  5. * Date and time
  6. */
  7. #include <stdint.h>
  8. /** Seconds since the Epoch
  9. *
  10. * We use a 64-bit type to avoid Y2K38 issues, since we may have to
  11. * handle distant future dates (e.g. X.509 certificate expiry dates).
  12. */
  13. typedef int64_t time_t;
  14. #endif /* _SYS_TIME_H */