7 lines
198 B
C++
7 lines
198 B
C++
#pragma once
|
|
|
|
#include "std.hpp"
|
|
|
|
std::string _format(const std::string& format_str, const size_t args_count, ...);
|
|
#define format(FORMAT_STR, ARGS...) _format(FORMAT_STR, count_args(ARGS) ,##ARGS)
|