Документ взят из кэша поисковой машины. Адрес оригинального документа : http://mavr.sao.ru/hq/sts/linux/book/c_marshall/section2_21_12.html
Дата изменения: Unknown
Дата индексирования: Fri Dec 28 20:19:55 2007
Кодировка:

Поисковые слова: rigel
Time



Next: Program Listings Up: C Standard Library Functions Previous: String Manipulation

Time

#include <time.h>

char *asctime (struct tm *time) - Convert time from struct tmto string.

clock_t clock(void) - Get elapsed processor time in clock ticks.

char *ctime(time_t *time) - Convert binary time to string. double difftime(time_t time2, time_t time1) - Compute the difference between two times in seconds.

st ruct_tm *gmtime (time_t *time) - Get Greenwich Mean Time (GMT) in a tm structure.

struct tm *localtime(time_t *time) - Get the local time in a tm structure.

time_t time(time_t *timeptr) - Get current times as seconds elapsed since 0 hours GMT 1/1/70.


Dave.Marshall@cm.cf.ac.uk
Wed Sep 14 10:06:31 BST 1994