clock | 时钟程序(function) |
difftime | 返回两次之间的差值(function) |
mktime | 将tm结构转换为time_t(function) |
time | 获取当前时间(function) |
asctime | 转换tm结构为字符串(function) |
ctime | 将time_t值转换为字符串(function) |
gmtime | 将time_t转换为tm作为UTC时间(function) |
localtime | 将time_t转换为tm作为当地时间(function) |
strftime | 将时间格式化为字符串(function) |
CLOCKS_PER_SEC | 时钟每秒滴答数(macro ) |
NULL | 空指针(macro ) |
clock_t | 时钟类型(type ) |
size_t | 无符号整型(type ) |
time_t | 时间类型(type ) |
struct tm | 时间结构体(type ) |