MainWindow

This commit is contained in:
2024-07-30 02:31:21 +03:00
parent b336027743
commit 660fb5247c
6 changed files with 422 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
#pragma once
#include <string>
#include "../dependencies/kerep/src/base/std.h"
#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)