tibia-client/src/util.h

10 lines
176 B
C++

#ifndef UTIL_H
#define UTIL_H
#include <string>
#include <cstdarg>
std::string vformat(const char *format, va_list args);
std::string format(const char *format, ...);
#endif