Added snprintf/vsnprintf wrappers for systems that don't have
[yaz-moved-to-github.git] / src / snprintf.c
diff --git a/src/snprintf.c b/src/snprintf.c
new file mode 100644 (file)
index 0000000..fccf3b0
--- /dev/null
@@ -0,0 +1,44 @@
+/*
+ * Copyright (C) 2007, Index Data ApS
+ * See the file LICENSE for details.
+ *
+ * $Id: snprintf.c,v 1.1 2007-02-23 10:15:01 adam Exp $
+ */
+/**
+ * \file snprintf.c
+ * \brief snprintf wrapper
+ */
+
+#include <stdlib.h>
+#include <stdarg.h>
+#include <yaz/snprintf.h>
+
+void yaz_vsnprintf(char *buf, size_t size, const char *fmt, va_list ap)
+{
+#if HAVE_VSNPRINF
+    vsnprintf(buf, size, fmt, ap);
+#else
+#ifdef WIN32
+    _vsnprintf(buf, size, fmt, ap);
+#else
+    vsprintf(buf, fmt, ap);
+#endif
+#endif
+}
+
+void yaz_snprintf(char *buf, size_t size, const char *fmt, ...)
+{
+    va_list ap;
+    va_start(ap, fmt);
+    yaz_vsnprintf(buf, size, fmt, ap);
+    va_end(ap);
+}
+
+/*
+ * Local variables:
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ * vim: shiftwidth=4 tabstop=8 expandtab
+ */
+