<ctime>

標準 C ライブラリ ヘッダー <time.h> をインクルードし、関連する名前を std 名前空間に追加します。

構文

#include <ctime>

解説

このヘッダーをインクルードすると、標準 C ライブラリ ヘッダーの外部リンケージで宣言された名前が、std 名前空間でも宣言されます。

定数

#define NULL
#define CLOCKS_PER_SEC
#define TIME_UTC

namespace std {
    using size_t = see below;
    using clock_t = see below ;
    using time_t = see below ;
}

構造体

struct timespec;
struct tm;

関数

clock_t clock();
double difftime(time_t time1, time_t time0);
time_t mktime(struct tm* timeptr);
time_t time(time_t* timer);
int timespec_get(timespec* ts, int base);
char* asctime(const struct tm* timeptr);
char* ctime(const time_t* timer);
struct tm* gmtime(const time_t* timer);
struct tm* localtime(const time_t* timer);
size_t strftime(char* s, size_t maxsize, const char* format, const struct tm* timeptr);

関連項目

ヘッダー ファイル リファレンス
C++ 標準ライブラリの概要
C++ 標準ライブラリ内のスレッド セーフ