source:
mainline/uspace/lib/cpp/include/ctime@
8624d1f
| Last change on this file since 8624d1f was b57ba05, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 514 bytes | |
| Rev | Line | |
|---|---|---|
| [b83ec692] | 1 | /* |
| [b57ba05] | 2 | * SPDX-FileCopyrightText: 2018 Jaroslav Jindrak |
| [b83ec692] | 3 | * |
| [b57ba05] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
| [b83ec692] | 5 | */ |
| 6 | ||
| 7 | #ifndef LIBCPP_CTIME | |
| 8 | #define LIBCPP_CTIME | |
| 9 | ||
| [bc56f30] | 10 | #include <time.h> |
| [de53138] | 11 | |
| [b83ec692] | 12 | namespace std |
| 13 | { | |
| [bc56f30] | 14 | using ::clock_t; |
| 15 | using ::size_t; | |
| 16 | using ::time_t; | |
| 17 | using ::tm; | |
| 18 | using ::timespec; | |
| 19 | ||
| 20 | using ::clock; | |
| 21 | using ::time; | |
| 22 | using ::difftime; | |
| 23 | ||
| 24 | using ::ctime; | |
| 25 | using ::asctime; | |
| 26 | using ::strftime; | |
| 27 | /* using ::wcsftime; */ | |
| 28 | /* using ::gmtime; */ | |
| 29 | /* using ::localtime; */ | |
| 30 | using ::mktime; | |
| [b83ec692] | 31 | } |
| 32 | ||
| 33 | #endif |
Note:
See TracBrowser
for help on using the repository browser.
