initial commit

This commit is contained in:
2024-07-30 01:02:42 +03:00
commit 2e1fcb9536
25 changed files with 775 additions and 0 deletions

7
src/format.hpp Normal file
View 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)