initial commit
This commit is contained in:
7
src/format.hpp
Normal file
7
src/format.hpp
Normal file
@@ -0,0 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include "../dependencies/kerep/src/base/std.h"
|
||||
|
||||
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)
|
||||
Reference in New Issue
Block a user