Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/intl/icu/source/tools/tzcode/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 621 B image not shown  

Quelle  ialloc.c

  Sprache: C
 

/*
** This file is in the public domain, so clarified as of
** 2006-07-17 by Arthur David Olson.
*/


/*LINTLIBRARY*/

#include "private.h"

char *
icatalloc(char *const old, const char *const new)
{
 register char * result;
 register int oldsize, newsize;

 newsize = (new == NULL) ? 0 : strlen(new);
 if (old == NULL)
  oldsize = 0;
 else if (newsize == 0)
  return old;
 else oldsize = strlen(old);
 if ((result = realloc(old, oldsize + newsize + 1)) != NULL)
  if (new != NULL)
   (void) strcpy(result + oldsize, new);
 return result;
}

char *
icpyalloc(const char *const string)
{
 return icatalloc(NULL, string);
}

Messung V0.5 in Prozent
C=91 H=86 G=88

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet am  2026-06-05) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

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.