// Copyright (c) 2024, Marvin Borner // SPDX-License-Identifier: MIT #ifndef BLOCADE_LOG_H #define BLOCADE_LOG_H void debug(const char *format, ...); void debug_enable(int enable); void fatal(const char *format, ...) __attribute__((noreturn)); #endif