コード例 #1
0
ファイル: ctime64.t.c プロジェクト: KopBob/y2038
int main(void) {
    Time64_T time = 12345678987654321LL;
    char* ctime_ret1;
    char* ctime_ret2;
    char ctime_buf1[35];

    /* The ctime() function shall convert the time pointed to by clock, representing time
       in seconds since the Epoch, to local time in the form of a string. It shall be equivalent
       to: asctime(localtime(clock)) (ISO)
    */
    is_str( ctime64(&time), asctime64(localtime64(&time)), "ctime64()" );

    /* The asctime(), ctime(), gmtime(), and localtime() functions shall return values in 
       one of two static objects: a broken-down time structure and an array of char. Execution
       of any of the functions may overwrite the information returned in either of these
       objects by any of the other functions. (POSIX)
    */
    ctime_ret1 = ctime64(&time);
    time++;
    ctime_ret2 = ctime64(&time);
    is_str( ctime_ret1, ctime_ret2, "  return is static"   );

    /* The ctime_r() function shall convert the calendar time pointed to by clock to local
       time in exactly the same form as ctime() and put the string into the array pointed
       to by buf (which shall be at least 26 bytes in size) and return buf.
       (We need 35 bytes) (POSIX)
    */
    ctime_ret1 = ctime64_r(&time, ctime_buf1);
    is_str( ctime_ret1, ctime_buf1,                     "ctime64_r()" );
    is_str( ctime_ret1, asctime64(localtime64(&time)),  "  right time" );

    /* Unlike ctime(), the thread-safe version ctime_r() is not required to set tzname. (ISO)
       (I don't understand)
     */

    /* Upon successful completion, ctime_r() shall return a pointer to the string pointed to
       by buf. When an error is encountered, a null pointer shall be returned. (POSIX)
       (Can't think of any way to make it error)
    */

    done_testing();

    return 0;
}
コード例 #2
0
ファイル: time64.c プロジェクト: 01org/android-bluez-bionic
char *ctime64( const Time64_T* time ) {
    return asctime64(localtime64(time));
}
コード例 #3
0
ファイル: asctime64.t.c プロジェクト: KopBob/y2038
int main(void) {
    struct TM date;
    char * asctime_return1;
    char * asctime_return2;
    char asctime_r_buf1[35];
    char asctime_r_buf2[35];
    char * asctime_r_ret1;
    char * asctime_r_ret2;

    date = make_tm( 1, 2, 3, 4, 5, 234567LL );
    date.tm_wday = 1;   /* It's a Monday */

    /* The asctime() function shall convert the broken-down time in the structure pointed
       to by timeptr into a string in the form: (ISO)
       Sun Sep 16 01:03:52 1973\n\0
    */
    asctime_return1 = asctime64(&date);
    is_str( asctime_return1, "Mon May  4 03:02:01 234567\n", "asctime64()" );

    /* The asctime(), ctime(), gmtime(), and localtime() functions shall return values in
       one of two static objects: a broken-down time structure and an array of type char.
       Execution of any of the functions may overwrite the information returned in either
       of these objects by any of the other functions. (POSIX)
    */
    date.tm_sec = 42;
    asctime_return2 = asctime64(&date);
    is_str( asctime_return2, "Mon May  4 03:02:42 234567\n", "asctime64() again" );
    is_str( asctime_return1, asctime_return2, "  return is static" );

    /* The asctime_r() function shall convert the broken-down time in the structure pointed
       to by tm into a string (of the same form as that returned by asctime()) that is placed
       in the user-supplied buffer pointed to by buf (which shall contain at least 26 bytes)
       and then return buf. (POSIX)
       It'll have to be 35 bytes to hold the year -292,000,000,000
    */
    asctime_r_ret1 = asctime64_r( &date, asctime_r_buf1 );
    is_str( asctime_r_buf1,  "Mon May  4 03:02:42 234567\n", "asctime64_r()" );
    is_str( asctime_r_buf1,  asctime_r_ret1,                 "  return value same" );

    date.tm_hour = 5;
    asctime_r_ret2 = asctime64_r( &date, asctime_r_buf2 );
    is_str( asctime_r_buf2,  "Mon May  4 05:02:42 234567\n", "asctime64_r() again" );
    is_str( asctime_r_ret1,  "Mon May  4 03:02:42 234567\n", "  return not static" );

    /* Upon successful completion, asctime() shall return a pointer to the string.
       If the function is unsuccessful, it shall return NULL. (ISO)
    */
    date.tm_wday = -1;
    ok( asctime64(&date) == NULL, "asctime64() fail" );

    /* Upon successful completion, asctime_r() shall return a pointer to a character string
       containing the date and time. This string is pointed to by the argument buf. If the
       function is unsuccessful, it shall return NULL. (POSIX)
    */
    ok( asctime64_r(&date, asctime_r_buf2) == NULL,         "asctime64_r() fail" );
    is_str( asctime_r_buf2,  "Mon May  4 05:02:42 234567\n", "  buffer not overwritten" );

    /* No errors are defined. (ISO) */

    done_testing();

    return 0;
}
コード例 #4
0
ファイル: time64.c プロジェクト: eduardonunesp/iroha
char *ctime64( const Time64_T* time ) {
  tzset();
  return asctime64(localtime64(time));
}