리눅스 strftime, strptime 함수 사용 중 에러 질문이요.

embeddeds0의 이미지

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 = &timestruct;
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)

실행 중간부터 세그먼테이션 폴트 에러가 뜨네요..
분명 책에 있는 예제 그대로 작성했는데, 먼가 문제가 있는건가요?

peecky의 이미지

23라인 실행 후 result 값이 NULL인지 확인해보세요. 만약 NULL이라면 18라인의 Thu를 Thursday로 바꿔보세요.

qiiiiiiiip의 이미지

두번째 경고때문에 오류가 나고 있습니다.
64bit os를 사용하고 계실테고요.

man strptime 해보시면

SYNOPSIS
       #define _XOPEN_SOURCE /* glibc2 needs this */
       #include <time.h>
 
       char *strptime(const char *s, const char *format, struct tm *tm);

#define _XOPEN_SOURCE 이 필요하다고 하네요.
time.h 를 include하기 전에 넣어주세요

string.h 도 include 해주시고요.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.