Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/pipewire/spa/debug/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 1 kB image not shown  

Quelle  context.h

  Sprache: C
 

/* Simple Plugin API */
/* SPDX-FileCopyrightText: Copyright © 2023 Wim Taymans */
/* SPDX-License-Identifier: MIT */

#ifndef SPA_DEBUG_CONTEXT_H
#define SPA_DEBUG_CONTEXT_H

#ifdef __cplusplus
extern "C" {
#endif

#include <stdio.h>
#include <stdarg.h>
#include <ctype.h>

#include <spa/utils/defs.h>
/**
 * \addtogroup spa_debug
 * \{
 */


#ifndef spa_debugn
#define spa_debugn(_fmt,...) printf((_fmt), ## __VA_ARGS__)
#endif
#ifndef spa_debug
#define spa_debug(_fmt,...) spa_debugn(_fmt"\n"## __VA_ARGS__)
#endif


#ifndef SPA_API_DEBUG_CONTEXT
 #ifdef SPA_API_IMPL
  #define SPA_API_DEBUG_CONTEXT SPA_API_IMPL
 #else
  #define SPA_API_DEBUG_CONTEXT static inline
 #endif
#endif

struct spa_debug_context {
 void (*log) (struct spa_debug_context *ctx, const char *fmt, ...) SPA_PRINTF_FUNC(23);
};

#define spa_debugc(_c,_fmt,...) (_c)?((_c)->log((_c),_fmt, ## __VA_ARGS__)):(void)spa_debug(_fmt, ## __VA_ARGS__)

SPA_API_DEBUG_CONTEXT void spa_debugc_error_location(struct spa_debug_context *c,
  struct spa_error_location *loc)
{
 int i, skip = loc->col > 80 ? loc->col - 40 : 0, lc = loc->col-skip-1;
 char buf[80];

 for (i = 0; (size_t)i < sizeof(buf)-1 && (size_t)(i + skip) < loc->len; i++) {
  char ch = loc->location[i + skip];
  if (ch == '\n' || ch == '\0')
   break;
  buf[i] = isspace(ch) ? ' ' : ch;
 }
 buf[i] = '\0';
 spa_debugc(c, "line:%6d | %s%s", loc->line, skip ? "..." : "", buf);
 for (i = 0; buf[i]; i++)
  buf[i] = i < lc ? '-' : i == lc ? '^' : ' ';
 spa_debugc(c, "column:%4d |-%s%s", loc->col, skip ? "---" : "", buf);
}

/**
 * \}
 */


#ifdef __cplusplus
}  /* extern "C" */
#endif

#endif /* SPA_DEBUG_CONTEXT_H */

Messung V0.5 in Prozent
C=91 H=98 G=94

¤ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet am  2026-08-26) ¤

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