12345678910111213 |
- #pragma once
- #include <wchar.h>
- void __attribute__((noreturn)) msg_err_a(const char *format, ...);
- void __attribute__((noreturn)) msg_err_w(const wchar_t *format, ...);
- void msg_warn_a(const char *format, ...);
- void msg_warn_w(const wchar_t *format, ...);
- void msg_info_a(const char *format, ...);
- void msg_info_w(const wchar_t *format, ...);
|