28 void print(std::string_view sv);
35 void println(std::string_view sv);
56 void (*func_printer_normal)(std::string_view),
57 void (*func_printer_ln)(std::string_view),
58 void (*func_flush_func)());
namespace for basic c++ utilities
void println(std::string_view sv)
Prints a string to the console followed by a newline.
void print(std::string_view sv)
Prints a string to the console.
void flush()
Flushes the output buffer.
void reset_std_behavior()
Restores the default behavior of the print and println functions.
void change_printer(void(*func_printer_normal)(std::string_view), void(*func_printer_ln)(std::string_view), void(*func_flush_func)())
Changes the behavior of the print, println and flush functions.