리눅스 strftime, strptime 함수 사용 중 에러 질문이요.
1 #include
2 #include
3 #include
4
5 int main()
6 {
7 struct tm *tm_ptr, timestruct;
8 time_t the_time;
9 char buf[256];
10 char *result;
11
12 (void) time(&the_time); // 시간을 초단위로 반환
13 tm_ptr = localtime(&the_time); // 로컬 시간을 기준으로 tm 구조체를 초기화
14 strftime(buf, 256, "%A %d %B, %I:%S %p", tm_ptr);
15
16 printf("strftime gives: %s\n", buf);
17
18 strcpy(buf, "Thu 26 July 2007, 17:53 will do fine");
19
20 printf("calling strptime with: %s\n", buf);
21 tm_ptr = ×truct;
22
23 result = strptime(buf, "%a %d %b %Y, %R", tm_ptr);
24 printf("strptime consumed up to: %s\n", result);
25
26 printf("strptime gives:\n");
27 printf("date: %02d/%02d/%02d\n",
28 tm_ptr->tm_year % 100, tm_ptr->tm_mon+1, tm_ptr->tm_mday);
29 printf("time: %02d:%02d\n",
30 tm_ptr->tm_hour, tm_ptr->tm_min);
31 exit(0);
32 }
우선 위의 프로그램을 gcc로 컴파일하면 다음과 같은 경고가 나오는데요
strtime.c:18:5: warning: incompatible implicit declaration of built-in function ‘strcpy’ [enabled by default]
strcpy(buf, "Thu 26 July 2007, 17:53 will do fine");
^
strtime.c:23:12: warning: assignment makes pointer from integer without a cast [enabled by default]
result = strptime(buf, "%a %d %b %Y, %R", tm_ptr);
무시하고 실행해봤더니
strftime gives: Monday 23 March, 10:16 PM
calling strptime with: Thu 26 July 2007, 17:53 will do fine
Segmentation fault (core dumped)
실행 중간부터 세그먼테이션 폴트 에러가 뜨네요..
분명 책에 있는 예제 그대로 작성했는데, 먼가 문제가 있는건가요?
23라인 실행 후 result 값이 NULL인지
23라인 실행 후 result 값이 NULL인지 확인해보세요. 만약 NULL이라면 18라인의 Thu를 Thursday로 바꿔보세요.
두번째 경고때문에 오류가 나고 있습니다.64bit
두번째 경고때문에 오류가 나고 있습니다.
64bit os를 사용하고 계실테고요.
man strptime 해보시면
#define _XOPEN_SOURCE 이 필요하다고 하네요.
time.h 를 include하기 전에 넣어주세요
string.h 도 include 해주시고요.
댓글 달기