Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Linux/tools/lib/   (Linux Kernel 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 in Prozent
C=94 H=94 G=93

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

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