년도 날짜 시간으로 설정된 구조체 tm 을 time_t로 데이터 변경한다.
// 2012.12.25. 12:30:50
struct tm curTm;
curTm.tm_sec = 50; // second
curTm.tm_min = 30; // minute
curTm.tm_hour = 12; // hour
curTm.tm_mday = 25; // day
curTm.tm_mon = 12 -1; // month
curTm.tm_year = 2012 -1900; // year
curTm.tm_isdst = 0; // daylight saving time
time_t curTime = mktime( &curTm );
'[ Programing ] > C++' 카테고리의 다른 글
메모리 덮어쓰기 확인 _heapchk() (0) | 2013.05.21 |
---|---|
[C++] 원하는 시간 time(timestamp) 설정. mktime, localtime_s (0) | 2012.01.13 |
[TIP] time(NULL)과 시스템 시간에 대하여. (0) | 2011.09.29 |
리눅스에서 사용현재 시간, 날짜 계산. gettimeofday() (0) | 2011.06.29 |
_tprintf() 한글 출력. _wsetlocale( LC_ALL, _T("korean") ) (0) | 2011.04.26 |