+ 21.6 Strings library, Null-terminated sequence utilities: <cctype>, <cwctype>,...
[lightlibc++.git] / include / ctime
blob183ccd6768710e25b90846fe32fdc7e34a72b303
1 /*
2 Permission is granted to use, modify, and / or redistribute at will.
4 This includes removing authorship notices, re-use of code parts in
5 other software (with or without giving credit), and / or creating a
6 commercial product based on it.
8 This permission is not revocable by the author.
10 This software is provided as-is. Use it at your own risk. There is
11 no warranty whatsoever, neither expressed nor implied, and by using
12 this software you accept that the author(s) shall not be held liable
13 for any loss of data, loss of service, or other damages, be they
14 incidental or consequential. Your only option other than accepting
15 this is not to use the software at all.
17 #ifndef _LIGHTLIBCPP_CTIME
18 #define _LIGHTLIBCPP_CTIME
22 #include <time.h>
26 // NOTE: The CLOCKS_PER_SEC macro come from the Standard C library headers
30 namespace std
32   /** \addtogroup lightlibcpp_18_10 */
33   /*@{*/
35   /**
36    *\english
37    *  clock_t type from the C Standard library
38    *\endenglish
39    *\german
40    *  clock_t Typ aus der C Standardbibliothek
41    *\endgerman
42    */
43   typedef ::clock_t clock_t;
45   /**
46    *\english
47    *  time_t type from the C Standard library
48    *\endenglish
49    *\german
50    *  time_t Typ aus der C Standardbibliothek
51    *\endgerman
52    */
53   typedef ::time_t  time_t;
55   /**
56    *\english
57    *  struct tm type from the C Standard library
58    *\endenglish
59    *\german
60    *  struct tm Typ aus der C Standardbibliothek
61    *\endgerman
62    */
63   typedef ::tm tm;
67   using ::clock;
68   using ::difftime;
69   using ::mktime;
70   using ::time;
71   using ::asctime;
72   using ::ctime;
73   using ::gmtime;
74   using ::localtime;
75   using ::strftime;
77   /*@}*/
82 #endif