Log.h 310 B

12345678910
  1. // SPDX-FileCopyrightText: 2021 Jorrit Rouwe
  2. // SPDX-License-Identifier: MIT
  3. #pragma once
  4. /// Print an error message and terminate the application
  5. extern void FatalError [[noreturn]] (const char *inFMT, ...);
  6. /// Implementation of trace that traces to the TTY
  7. extern void TraceImpl(const char *inFMT, ...);