C언어/C언어 예제

[C언어 소스] asctime_s 함수 사용 예제, asc_time 함수의 버퍼 오버플로우 버그 개선

언제나휴일 2016. 5. 7. 09:11
반응형

asctime_s 함수 사용 예제, asc_time 함수의 버퍼 오버플로우 버그 개선


//C언어 표준 라이브러리 함수 가이드

//errno_t asctime_s(char *buffer, size_t size, const struct tm *timeptr); 일시로 문자열로 변환하는 함수

//현재 지역 시각과 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_s(&gmt,&now_time);//GMT 시각을 구함

    asctime_s(buf,sizeof(buf),&gmt);//GMT 시각을 문자열로 변환

    printf("GMT 시각: %s", buf);//GMT 시각을 출력

    return 0;

}

 

출력

지역 시각: Sat Oct 31 02:26:35 2015

GMT 시각: Fri Oct 31 17:26:35 2015




언제나 휴일 티스토리


반응형