mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
8c6671477e
- start using our own c++ headers and forward stlport ones to them in msvc build. - fix fpecode declaration for MSVC. [CMAKE] - cardlib is a cpp library. Now stlport compiles with msvc. svn path=/branches/cmake-bringup/; revision=49552
60 lines
961 B
Text
60 lines
961 B
Text
// Standard C string declarations for C++
|
|
|
|
//
|
|
// ISO C++ 14882: 20.4.6 C library
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
#include <string.h>
|
|
|
|
// Get rid of those macros defined in <string.h> in lieu of real functions.
|
|
#undef memchr
|
|
#undef memcmp
|
|
#undef memcpy
|
|
#undef memmove
|
|
#undef memset
|
|
#undef strcat
|
|
#undef strchr
|
|
#undef strcmp
|
|
#undef strcoll
|
|
#undef strcpy
|
|
#undef strcspn
|
|
#undef strerror
|
|
#undef strlen
|
|
#undef strncat
|
|
#undef strncmp
|
|
#undef strncpy
|
|
#undef strpbrk
|
|
#undef strrchr
|
|
#undef strspn
|
|
#undef strstr
|
|
#undef strtok
|
|
#undef strxfrm
|
|
|
|
namespace std
|
|
{
|
|
using ::memchr;
|
|
using ::memcmp;
|
|
using ::memcpy;
|
|
using ::memmove;
|
|
using ::memset;
|
|
using ::strcat;
|
|
using ::strcmp;
|
|
using ::strcoll;
|
|
using ::strcpy;
|
|
using ::strcspn;
|
|
using ::strerror;
|
|
using ::strlen;
|
|
using ::strncat;
|
|
using ::strncmp;
|
|
using ::strncpy;
|
|
using ::strspn;
|
|
using ::strtok;
|
|
using ::strxfrm;
|
|
using ::strchr;
|
|
using ::strpbrk;
|
|
using ::strrchr;
|
|
using ::strstr;
|
|
}
|