summaryrefslogtreecommitdiffstats
path: root/libmsi/utf16/sprintfW.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmsi/utf16/sprintfW.c')
-rw-r--r--libmsi/utf16/sprintfW.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/libmsi/utf16/sprintfW.c b/libmsi/utf16/sprintfW.c
new file mode 100644
index 0000000..b7c5498
--- /dev/null
+++ b/libmsi/utf16/sprintfW.c
@@ -0,0 +1,38 @@
+/* Formatted output to strings.
+ Copyright (C) 1999, 2002, 2005-2007, 2009-2012 Free Software Foundation,
+ Inc.
+
+ This program is free software: you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+#include <wine/unicode.h>
+#include <stdarg.h>
+#include <limits.h>
+
+int
+sprintfW (WCHAR *buf, const WCHAR *format, ...)
+{
+ va_list args;
+ int result;
+
+ va_start (args, format);
+ result = vsprintfW (buf, format, args);
+ va_end (args);
+ return result;
+}
+
+int
+vsprintfW (WCHAR *buf, const WCHAR *format, va_list args)
+{
+ return _vsnwprintf (buf, INT_MAX, format, args);
+}