Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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 */