Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/parser/html/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 657 B image not shown  

Quellcode-Bibliothek nsHtml5ByteReadable.h   Sprache: C

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


#ifndef nsHtml5ByteReadable_h
#define nsHtml5ByteReadable_h

/**
 * A weak reference wrapper around a byte array.
 */

class nsHtml5ByteReadable {
 public:
  nsHtml5ByteReadable(const uint8_t* aCurrent, const uint8_t* aEnd)
      : current(aCurrent), end(aEnd) {}

  inline int32_t read() {
    if (current < end) {
      return *(current++);
    } else {
      return -1;
    }
  }

 private:
  const uint8_t* current;
  const uint8_t* end;
};
#endif

100%


¤ 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.0.11Bemerkung:  (vorverarbeitet)  ¤

*Bot Zugriff






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 ist noch experimentell.