]> git.saurik.com Git - wxWidgets.git/commitdiff
removed copystring function already defined in common wx utilities
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Thu, 6 Sep 2001 19:14:46 +0000 (19:14 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Thu, 6 Sep 2001 19:14:46 +0000 (19:14 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11567 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

utils/HelpGen/src/wx_extra_imps.cpp

index e4af6ef024b4944d072dd1dde1ce7e45a3c82ad0..ab8b9fbb2d4ac3bd381c1ab9b2106f74c51c3bdf 100644 (file)
     #include "wx/defs.h"
 #endif
 
-char *
-copystring (const char *s)
-{
-  if (s == NULL) s = "";
-  size_t len = strlen (s) + 1;
-
-  char *news = new char[len];
-  memcpy (news, s, len);    // Should be the fastest
-
-  return news;
-}
-
 #ifdef __WXMSW__
 // from filefn.cpp
 void WXDLLEXPORT wxSplitPath(const char *pszFileName,
@@ -78,4 +66,4 @@ const char *wxGetTranslation(const char *str)
 {
     return str;
 }
-#endif // MSW
\ No newline at end of file
+#endif // MSW