00001 /********** 00002 This library is free software; you can redistribute it and/or modify it under 00003 the terms of the GNU Lesser General Public License as published by the 00004 Free Software Foundation; either version 2.1 of the License, or (at your 00005 option) any later version. (See <http://www.gnu.org/copyleft/lesser.html>.) 00006 00007 This library is distributed in the hope that it will be useful, but WITHOUT 00008 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 00009 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for 00010 more details. 00011 00012 You should have received a copy of the GNU Lesser General Public License 00013 along with this library; if not, write to the Free Software Foundation, Inc., 00014 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00015 **********/ 00016 // Copyright (c) 1996-2013 Live Networks, Inc. All rights reserved. 00017 // A C++ equivalent to the standard C routine "strdup()". 00018 // This generates a char* that can be deleted using "delete[]" 00019 // Implementation 00020 00021 #include "strDup.hh" 00022 #include "string.h" 00023 00024 char* strDup(char const* str) { 00025 if (str == NULL) return NULL; 00026 size_t len = strlen(str) + 1; 00027 char* copy = new char[len]; 00028 00029 if (copy != NULL) { 00030 memcpy(copy, str, len); 00031 } 00032 return copy; 00033 } 00034 00035 char* strDupSize(char const* str) { 00036 if (str == NULL) return NULL; 00037 size_t len = strlen(str) + 1; 00038 char* copy = new char[len]; 00039 00040 return copy; 00041 } 00042
1.5.2