// Copyright 2022 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file.
// Helper function for printing to a Vector. staticinlineint MOZ_FORMAT_PRINTF(2, 3)
SNPrintF(V8Vector<char> str, constchar* format, ...) {
va_list args;
va_start(args, format); int result = vsnprintf(str.start(), str.length(), format, args);
va_end(args); return result;
}
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.