■ 시간관련 C ■


clock_t clock(void) 은 [ CPU time ]

반환값 밀리세컨드

 

time_t time(time_t *timer) 은 [ 시스템 time ]

반환값 세컨드




time_t aclock;

struct tm *CurrentTime = NULL;


time( &aclock );

CurrentTime = localtime( &aclock );


Posted by 타이슨킴