diff options
Diffstat (limited to 'src/lib/util/corestr.h')
-rw-r--r-- | src/lib/util/corestr.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/util/corestr.h b/src/lib/util/corestr.h index 94f13c4061b..9d06b30c9f7 100644 --- a/src/lib/util/corestr.h +++ b/src/lib/util/corestr.h @@ -14,6 +14,7 @@ #define __CORESTR_H__ #include "osdcore.h" +#include "strformat.h" #include <string.h> @@ -66,9 +67,6 @@ char *core_i64_oct_format(UINT64 value, UINT8 mindigits); int strvprintf(std::string &str, const char *format, va_list args); int strcatvprintf(std::string &str, const char *format, va_list args); -int strprintf(std::string &str, const char *format, ...) ATTR_PRINTF(2, 3); -int strcatprintf(std::string &str, const char *format, ...) ATTR_PRINTF(2, 3); -std::string strformat(const char *format, ...) ATTR_PRINTF(1, 2); void strdelchr(std::string& str, char chr); void strreplacechr(std::string& str, char ch, char newch); |