Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/nsprpub/pr/tests/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  formattm.c   Sprache: C

 
/* -*- 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;
}

Messung V0.5
C=97 H=81 G=89

¤ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.