[C언어 소스] gmtime_s 함수 사용 예제, gmtime 함수의 버퍼 오버플로우 버그 개선 //C언어 표준 라이브러리 함수 가이드//errno_t gmtime_s(struct tm *tmp, const time_t *timer); 지역 초 단위 시간으로 GMT 시각으로 변환하는 함수//현재 지역 시각과 GMT 시각을 출력 #include #include 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);//지역 시각을 버..