"cpp/linux/time/ftime"의 두 판 사이의 차이

Redjini WiKi
< cpp‎ | linux‎ | time
 
(차이 없음)

2017년 3월 3일 (금) 13:26 기준 최신판


1970년 1월 1일 부터 현재 까지 시간 구하기

사용법
#include <sys/timeb.h>

void ftime(struct timeb *buf);

struct timeb {
    long time;        // 초
    short millitm;    // milliseconds
    short timezone;   // 시차(minutes)
    short dstflag;    // DST 보정
}
참고