X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Finspstring.h;h=b08ce76476c8caf3387116e950acb3d468263f58;hb=d1ddbd62f91d4b9453447b5d25f5e41e807b0010;hp=54bb1c8bd641927e0546b67dfae7b293f134cb28;hpb=b6dbd6caab62bc2c0d11ce5a45d511611eb9c2ef;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/inspstring.h b/include/inspstring.h index 54bb1c8bd..b08ce7647 100644 --- a/include/inspstring.h +++ b/include/inspstring.h @@ -39,19 +39,8 @@ CoreExport int charlcat(char* x,char y,int z); */ CoreExport bool charremove(char* mp, char remove); -/** strnewdup() is an implemenetation of strdup() which calls operator new - * rather than malloc to allocate the new string, therefore allowing it to - * be hooked into the C++ memory manager, and freed with operator delete. - * This is required for windows, where we override operators new and delete - * to allow for global allocation between modules and the core. - */ -inline char * strnewdup(const char * s1) -{ - size_t len = strlen(s1) + 1; - char * p = new char[len]; - memcpy(p, s1, len); - return p; -} +/** Binary to hexadecimal conversion */ +CoreExport std::string BinToHex(const std::string& data); #endif