KEK/error.cpp
2024-05-19 20:38:04 +02:00

42 lines
779 B
C++

// (C) 2018-2023 by Folkert van Heusden
// Released under MIT license
#include <errno.h>
#include <string.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <signal.h>
#if defined(ESP32) || defined(BUILD_FOR_RP2040)
#include <Arduino.h>
#elif defined(_WIN32)
#else
#include <ncursesw/ncurses.h>
#endif
#include "error.h"
[[ noreturn ]] void error_exit(bool sys_err, const char *format, ...)
{
#if defined(ESP32) || defined(BUILD_FOR_RP2040)
printf("Fatal error: %s\n", format);
#else
int e = errno;
#if !defined(_WIN32)
(void)endwin();
#endif
va_list ap;
va_start(ap, format);
(void)vfprintf(stderr, format, ap);
va_end(ap);
if (sys_err == true)
fprintf(stderr, "error: %s (%d)\n", strerror(e), e);
exit(1);
#endif
}