From cd5acb228cae597e7eff28527981f41699cfc441 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sat, 29 Sep 2012 13:50:05 +0000 Subject: [PATCH] Extended the cFile interface with Printf() git-svn-id: http://mc-server.googlecode.com/svn/trunk@901 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/OSSupport/File.cpp | 14 ++++++++++++++ source/OSSupport/File.h | 2 ++ 2 files changed, 16 insertions(+) diff --git a/source/OSSupport/File.cpp b/source/OSSupport/File.cpp index fdae0b34e..7fbaf218f 100644 --- a/source/OSSupport/File.cpp +++ b/source/OSSupport/File.cpp @@ -269,3 +269,17 @@ bool cFile::Exists(const AString & a_FileName) + +int cFile::Printf(const char * a_Fmt, ...) +{ + AString buf; + va_list args; + va_start(args, a_Fmt); + AppendVPrintf(buf, a_Fmt, args); + va_end(args); + return Write(buf.c_str(), buf.length()); +} + + + + diff --git a/source/OSSupport/File.h b/source/OSSupport/File.h index f3d21d450..5e7cd4431 100644 --- a/source/OSSupport/File.h +++ b/source/OSSupport/File.h @@ -95,6 +95,8 @@ public: /// Returns true if the file specified exists static bool Exists(const AString & a_FileName); + int Printf(const char * a_Fmt, ...); + private: #ifdef USE_STDIO_FILE FILE * m_File;