
Bronek Kozicki wrote:
Please note that I deployed temporary fix on cstring from libcomo 31. Comeau Computing may deliver different solution, and when it happens I'm going to deploy it.
I have received official fix from Comeau Computing and I'm replacing my temporary solution with it (replacing header file while tests are running may screw results, be warned). I'm attaching official cstring file, so others may reproduce regression tests on Comeau compiler with libcomo. B. #ifndef _COMO_CSTRING #define _COMO_CSTRING #include <string.h> namespace std { using ::size_t; using ::memcpy; using ::memmove; using ::strcpy; using ::strncpy; using ::strcat; using ::strncat; using ::memcmp; using ::strcmp; using ::strcoll; using ::strncmp; #ifndef __LCC__ using ::strxfrm; #endif using ::memchr; using ::strchr; using ::strcspn; using ::strpbrk; using ::strrchr; using ::strspn; using ::strstr; using ::strtok; using ::memset; using ::strerror; //using ::strlen; #ifndef __BORLANDC__ extern "C++" inline size_t strlen(const char *arg) { return ::strlen(arg); } #endif } #endif