summaryrefslogtreecommitdiffstats
path: root/nsprpub/pr/tests/formattm.c
blob: 63355b28b74f3bc5a89912571234c8ee0393d305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/* A test program for PR_FormatTime and PR_FormatTimeUSEnglish */

#include "prtime.h"

#include <stdio.h>

int main(int argc, char **argv)
{
    char buffer[256];
    char small_buffer[8];
    PRTime now;
    PRExplodedTime tod;

    now = PR_Now();
    PR_ExplodeTime(now, PR_LocalTimeParameters, &tod);

    if (PR_FormatTime(buffer, sizeof(buffer),
                      "%a %b %d %H:%M:%S %Z %Y", &tod) != 0) {
        printf("%s\n", buffer);
    } else {
        fprintf(stderr, "PR_FormatTime(buffer) failed\n");
        return 1;
    }

    small_buffer[0] = '?';
    if (PR_FormatTime(small_buffer, sizeof(small_buffer),
                      "%a %b %d %H:%M:%S %Z %Y", &tod) == 0) {
        if (small_buffer[0] != '\0') {
            fprintf(stderr, "PR_FormatTime(small_buffer) did not output "
                    "an empty string on failure\n");
            return 1;
        }
        printf("%s\n", small_buffer);
    } else {
        fprintf(stderr, "PR_FormatTime(small_buffer) succeeded "
                "unexpectedly\n");
        return 1;
    }

    (void)PR_FormatTimeUSEnglish(buffer, sizeof(buffer),
                                 "%a %b %d %H:%M:%S %Z %Y", &tod);
    printf("%s\n", buffer);

    return 0;
}