언어 자료구조 알고리즘/C11 표준 라이브러리 함수

gmtime_s

언제나휴일 2016. 1. 3. 16:05
반응형
errno_t gmtime_s(struct tm *tmp, const time_t *timer); 지역 초 단위 시간으로 GMT 시각으로 변환하는 함수
 
입력 매개 변수 리스트
tmp 변환한 GMP 시각을 설정할 메모리 주소
timer 초단위 시간
반환 값
에러 번호
 
사용 예
//C언어 표준 라이브러리 함수 사용법 가이드
//errno_t gmtime_s(struct tm *tmp, const time_t *timer); 지역 초 단위 시간으로 GMT 시각으로 변환하는 함수
//현재 지역 시각과 GMT 시각을 출력
 
#include <time.h>
#include <stdio.h>
int main(void)
{
    struct tm gmt, localt;
    time_t now_time;
    char buf[256];
    time(&now_time); //현재 초 단위 시간을 측정
    localtime_s(&localt, &now_time);//지역 시각을 구함
    asctime_s(buf, sizeof(buf), &localt);//지역 시각을 버퍼에 출력
    printf("지역 시각: %s", buf);//지역 시각을 출력
    gmtime(&gmt,&now_time);//GMT 시각을 구함
    asctime_s(buf, sizeof(buf), &gmt);//GMT 시각을 버퍼에 출력
    printf("GMT 시각: %s", buf);//GMT 시각을 출력
    return 0;
}
출력
지역 시각: Sat Oct 31 08:51:33 2015
GMT 시각: Fri Oct 30 23:51:33 2015
반응형