/* * Logging utilities. * Copyright (c) 2023-2024, Quinn Stephens and the OSMORA team. * Provided under the BSD 3-Clause license. */ #include #include #include "debug.h" void __debug(const char *fmt, ...) { va_list ap; printf("\033[90mdebug:\033[0m "); va_start(ap, fmt); vprintf(fmt, ap); va_end(ap); }