mirror of
https://github.com/WerWolv/ImHex-Patterns.git
synced 2026-03-28 07:47:02 -05:00
22 lines
368 B
Plaintext
22 lines
368 B
Plaintext
#pragma once
|
|
|
|
namespace std {
|
|
|
|
fn print(str fmt, auto ... args) {
|
|
builtin::std::print(fmt, args);
|
|
};
|
|
|
|
fn format(str fmt, auto ... args) {
|
|
return builtin::std::format(fmt, args);
|
|
};
|
|
|
|
|
|
fn error(str message) {
|
|
builtin::std::error(message);
|
|
};
|
|
|
|
fn warning(str message) {
|
|
builtin::std::warning(message);
|
|
};
|
|
|
|
} |