summaryrefslogtreecommitdiff
path: root/src/fl_string.cxx
diff options
context:
space:
mode:
authorerco77 <erco@seriss.com>2020-08-01 14:35:44 -0700
committerGitHub <noreply@github.com>2020-08-01 14:35:44 -0700
commit7abc09ad89b4c3d0c17ee8dc9d02ccd261cd13f2 (patch)
tree72e461bac5930f8a319d48a6ea99ba793dd35a8b /src/fl_string.cxx
parent7514a73ba759f7fc9965eeef3b92ece899bd7a69 (diff)
parente9688822ec68f066f425953278a853e049b93dfb (diff)
Merge pull request #116 from erco77/fl_strdup
fl_strdup() implemented + deployed
Diffstat (limited to 'src/fl_string.cxx')
-rw-r--r--src/fl_string.cxx34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/fl_string.cxx b/src/fl_string.cxx
new file mode 100644
index 000000000..c53c0e21f
--- /dev/null
+++ b/src/fl_string.cxx
@@ -0,0 +1,34 @@
+/*
+ * Platform agnostic string portability functions for the Fast Light Tool Kit (FLTK).
+ *
+ * Copyright 2020 by Bill Spitzak and others.
+ *
+ * This library is free software. Distribution and use rights are outlined in
+ * the file "COPYING" which should have been included with this file. If this
+ * file is missing or damaged, see the license at:
+ *
+ * https://www.fltk.org/COPYING.php
+ *
+ * Please see the following page on how to report bugs and issues:
+ *
+ * https://www.fltk.org/bugs.php
+ */
+
+#include <FL/fl_string.h>
+#include <string.h> // strdup/_strdup
+#include "Fl_System_Driver.H"
+
+/**
+ Cross platform interface to POSIX function strdup().
+
+ The fl_strdup() function returns a pointer to a new string which is
+ a duplicate of the string 's'. Memory for the new string is obtained
+ with malloc(3), and can be freed with free(3).
+
+ Implementation:
+ - POSIX: strdup()
+ - WinAPI: _strdup()
+ */
+char *fl_strdup(const char *s) {
+ return Fl::system_driver()->strdup(s);
+}