Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/toolkit/crashreporter/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  linux_utils.cc

  Sprache: C
 

/* -*- Mode: C++; tab-width: 2; 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/. */


#include "common/linux/linux_libc_support.h"
#include "linux_utils.h"

bool ElfFileSoVersion(const char* mapping_name, uint32_t* version_components) {
  if (!version_components) {
    return false;
  }

  // We found no version so just report 0
  const char* so_version = my_strstr(mapping_name, ".so.");
  if (so_version == nullptr) {
    return true;
  }

  char tmp[12];  // 11 for maximum representation of UINT32T_MAX + \0 ?
  size_t current_position = 0;
  size_t next_tmp = 0;
  tmp[0] = '\0';
  for (size_t so_version_pos = 0; so_version_pos <= my_strlen(so_version);
       ++so_version_pos) {
    // We can't have more than four: MAJOR.minor.release.patch
    if (current_position == 4) {
      break;
    }

    char c = so_version[so_version_pos];
    if (c != '.') {
      if ((c <= '9' && c >= '0')) {
        tmp[next_tmp] = c;
        tmp[next_tmp + 1] = '\0';
        ++next_tmp;
      }

      if (so_version[so_version_pos + 1] != '\0') {
        continue;
      }
    }

    if (my_strlen(tmp) > 0) {
      int t;
      if (!my_strtoui(&t, tmp)) {
        return false;
      }
      uint32_t casted_tmp = (uint32_t)t;
      version_components[current_position] = casted_tmp;
      ++current_position;
    }

    tmp[0] = '\0';
    next_tmp = 0;
  }

  return true;
}

Messung V0.5 in Prozent
C=93 H=94 G=93

¤ Dauer der Verarbeitung: 0.13 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.