Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===---------------------------- ctime -----------------------------------===// |
| 3 | // |
| 4 | // ÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊThe LLVM Compiler Infrastructure |
| 5 | // |
| 6 | // This file is distributed under the University of Illinois Open Source |
| 7 | // License. See LICENSE.TXT for details. |
| 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | |
| 11 | #ifndef _LIBCPP_CTIME |
| 12 | #define _LIBCPP_CTIME |
| 13 | |
| 14 | /* |
| 15 | ctime synopsis |
| 16 | |
| 17 | Macros: |
| 18 | |
| 19 | NULL |
| 20 | CLOCKS_PER_SEC |
| 21 | |
| 22 | namespace std |
| 23 | { |
| 24 | |
| 25 | Types: |
| 26 | |
| 27 | clock_t |
| 28 | size_t |
| 29 | time_t |
| 30 | tm |
| 31 | |
| 32 | clock_t clock(); |
| 33 | double difftime(time_t time1, time_t time0); |
| 34 | time_t mktime(tm* timeptr); |
| 35 | time_t time(time_t* timer); |
| 36 | char* asctime(const tm* timeptr); |
| 37 | char* ctime(const time_t* timer); |
| 38 | tm* gmtime(const time_t* timer); |
| 39 | tm* localtime(const time_t* timer); |
| 40 | size_t strftime(char* restrict s, size_t maxsize, const char* restrict format, |
| 41 | const tm* restrict timeptr); |
| 42 | |
| 43 | } // std |
| 44 | |
| 45 | */ |
| 46 | |
| 47 | #include <__config> |
| 48 | #include <time.h> |
| 49 | |
| 50 | #pragma GCC system_header |
| 51 | |
| 52 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 53 | |
| 54 | using ::clock_t; |
| 55 | using ::size_t; |
| 56 | using ::time_t; |
| 57 | using ::tm; |
| 58 | using ::clock; |
| 59 | using ::difftime; |
| 60 | using ::mktime; |
| 61 | using ::time; |
| 62 | using ::asctime; |
| 63 | using ::ctime; |
| 64 | using ::gmtime; |
| 65 | using ::localtime; |
| 66 | using ::strftime; |
| 67 | |
| 68 | _LIBCPP_END_NAMESPACE_STD |
| 69 | |
| 70 | #endif // _LIBCPP_CTIME |