aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/strdupx.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsde/xsde/cxx/strdupx.cxx')
-rw-r--r--libxsde/xsde/cxx/strdupx.cxx48
1 files changed, 48 insertions, 0 deletions
diff --git a/libxsde/xsde/cxx/strdupx.cxx b/libxsde/xsde/cxx/strdupx.cxx
new file mode 100644
index 0000000..254df2a
--- /dev/null
+++ b/libxsde/xsde/cxx/strdupx.cxx
@@ -0,0 +1,48 @@
+// file : xsde/cxx/strdupx.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+#include <string.h> // strlen, memcpy
+
+#include <xsde/cxx/config.hxx>
+#include <xsde/cxx/strdupx.hxx>
+
+namespace xsde
+{
+ namespace cxx
+ {
+ char*
+ strdupx (const char* s)
+ {
+ size_t n = strlen (s);
+ char* r = new char[n + 1];
+
+#ifndef XSDE_EXCEPTIONS
+ if (r)
+#endif
+ memcpy (r, s, n + 1);
+
+ return r;
+ }
+
+ char*
+ strndupx (const char* s, size_t n)
+ {
+ char* r = new char[n + 1];
+
+#ifndef XSDE_EXCEPTIONS
+ if (r)
+ {
+#endif
+ memcpy (r, s, n);
+ r[n] = '\0';
+
+#ifndef XSDE_EXCEPTIONS
+ }
+#endif
+
+ return r;
+ }
+ }
+}