Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
659 B

  1. // ctime standard header
  2. #pragma once
  3. #ifndef _CTIME_
  4. #define _CTIME_
  5. #include <yvals.h>
  6. #ifdef _STD_USING
  7. #undef _STD_USING
  8. #include <time.h>
  9. #define _STD_USING
  10. #else /* _STD_USING */
  11. #include <time.h>
  12. _STD_BEGIN
  13. using ::clock_t; using ::size_t;
  14. using ::time_t; using ::tm;
  15. using ::asctime; using ::clock; using ::ctime;
  16. using ::difftime; using ::gmtime; using ::localtime;
  17. using ::mktime; using ::strftime; using ::time;
  18. _STD_END
  19. #endif /* _STD_USING */
  20. #endif /* _CTIME_ */
  21. /*
  22. * Copyright (c) 1992-2001 by P.J. Plauger. ALL RIGHTS RESERVED.
  23. * Consult your license regarding permissions and restrictions.
  24. V3.10:0009 */