26 #ifndef XLKIT_UTIL_HPP
27 #define XLKIT_UTIL_HPP
41 #define XLKIT_PUSH_DISABLE_WARN_DEPRECATION \
42 __pragma(warning(push)) \
43 __pragma(warning(disable:4996)) \
45 #define XLKIT_POP_DISABLE_WARN_DEPRECATION \
46 __pragma(warning(pop)) \
49 #define XLKIT_PUSH_DISABLE_WARN_DEPRECATION
50 #define XLKIT_POP_DISABLE_WARN_DEPRECATION
55 strprintfV(
const char *fmt, va_list args) {
56 static const size_t NBUF = 2048;
57 std::string str(NBUF, 0);
59 XLKIT_PUSH_DISABLE_WARN_DEPRECATION
60 int n = vsnprintf(&str[0], str.size(), fmt, args);
61 XLKIT_POP_DISABLE_WARN_DEPRECATION
62 if (n > 0 && n < (
int)str.size()) {
72 strprintf(
const char *fmt, ...) {
75 std::string str = strprintfV(fmt, args);
83 #endif // XLKIT_UTIL_HPP
#define XLKIT_VERSION_NAME
Version namespace for this library.
Definition: xlversion.hpp:33
#define XLKIT_USE_VERSION_NAMESPACE
Macro used to pull the versioned namespace into the main xlkit namepsace.
Definition: xlversion.hpp:52