Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Linux/tools/lib/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 875 B image not shown  

Quelle  cmdline.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0-only
/*
 * From lib/cmdline.c
 */

#include <stdlib.h>

#if __has_attribute(__fallthrough__)
define fallthrough                    __attribute__((__fallthrough__))
#else
define fallthrough                    do {} while (0)  /* fallthrough */
#endif

unsigned long long memparse(const char *ptr, char **retptr)
{
 char *endptr; /* local pointer to end of parsed string */

 unsigned long long ret = strtoll(ptr, &endptr, 0);

 switch (*endptr) {
 case 'E':
 case 'e':
  ret <<= 10;
  fallthrough;
 case 'P':
 case 'p':
  ret <<= 10;
  fallthrough;
 case 'T':
 case 't':
  ret <<= 10;
  fallthrough;
 case 'G':
 case 'g':
  ret <<= 10;
  fallthrough;
 case 'M':
 case 'm':
  ret <<= 10;
  fallthrough;
 case 'K':
 case 'k':
  ret <<= 10;
  endptr++;
  fallthrough;
 default:
  break;
 }

 if (retptr)
  *retptr = endptr;

 return ret;
}

Messung V0.5
C=93 H=87 G=89

¤ Dauer der Verarbeitung: 0.2 Sekunden  ¤

*© 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.