?? ttime.h
字號:
/* $Id: ttime.h,v 1.8 2004/11/12 09:49:05 zas Exp $ */#ifndef EL__UTIL_TTIME_H#define EL__UTIL_TTIME_H#ifdef HAVE_SYS_TIME_H#include <sys/time.h>#endif#ifdef HAVE_TIME_H#include <time.h>#endif/* WARNING: may cause overflows since ttime holds values 1000 times * bigger than usual time_t */typedef time_t ttime;ttime get_time(void);/* Is using atol() in this way acceptable? It seems * non-portable to me; ttime might not be a long. -- Miciah */#define str_to_ttime(s) ((ttime) atol(s))#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -