epoc32/include/tools/stlport/using/cstring
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
williamr@4
     1
using _STLP_VENDOR_CSTD::size_t;
williamr@4
     2
williamr@4
     3
#if !defined (_STLP_NO_CSTD_FUNCTION_IMPORTS)
williamr@4
     4
#  if defined (__MSL__) && __MC68K__ && !_No_BlockMove && __dest_os == __mac_os
williamr@4
     5
#    undef memcpy
williamr@4
     6
#    undef memmove
williamr@4
     7
inline void* memcpy(void* dst, const void* src, size_t len)
williamr@4
     8
{	return _STLP_VENDOR_CSTD::__memcpy(dst, src, len); }
williamr@4
     9
inline void* memmove(void* dst, const void* src, size_t len)
williamr@4
    10
{	return _STLP_VENDOR_CSTD::__memmove(dst, src, len); }
williamr@4
    11
#  else
williamr@4
    12
using _STLP_VENDOR_CSTD::memmove;
williamr@4
    13
using _STLP_VENDOR_CSTD::memcpy;
williamr@4
    14
#  endif
williamr@4
    15
williamr@4
    16
#  if !defined (_STLP_WCE)
williamr@4
    17
// these functions just don't exist on Windows CE
williamr@4
    18
using _STLP_VENDOR_CSTD::strcoll;
williamr@4
    19
using _STLP_VENDOR_CSTD::strerror;
williamr@4
    20
using _STLP_VENDOR_CSTD::strxfrm;
williamr@4
    21
#  endif
williamr@4
    22
williamr@4
    23
#  if defined (__BORLANDC__)
williamr@4
    24
extern "C++" {
williamr@4
    25
#  endif
williamr@4
    26
using _STLP_VENDOR_CSTD::memchr;
williamr@4
    27
using _STLP_VENDOR_CSTD::strchr;
williamr@4
    28
using _STLP_VENDOR_CSTD::strpbrk;
williamr@4
    29
using _STLP_VENDOR_CSTD::strrchr;
williamr@4
    30
using _STLP_VENDOR_CSTD::strstr;
williamr@4
    31
#  if defined (__BORLANDC__)
williamr@4
    32
}
williamr@4
    33
#  endif
williamr@4
    34
williamr@4
    35
using _STLP_VENDOR_CSTD::memcmp;
williamr@4
    36
using _STLP_VENDOR_CSTD::memset;
williamr@4
    37
williamr@4
    38
using _STLP_VENDOR_CSTD::strcat;
williamr@4
    39
williamr@4
    40
#  if !defined (strcmp)
williamr@4
    41
using _STLP_VENDOR_CSTD::strcmp;
williamr@4
    42
#  endif
williamr@4
    43
williamr@4
    44
#  if !defined (strcpy)
williamr@4
    45
using _STLP_VENDOR_CSTD::strcpy;
williamr@4
    46
#  endif
williamr@4
    47
using _STLP_VENDOR_CSTD::strcspn;
williamr@4
    48
using _STLP_VENDOR_CSTD::strlen;
williamr@4
    49
using _STLP_VENDOR_CSTD::strncat;
williamr@4
    50
using _STLP_VENDOR_CSTD::strncmp;
williamr@4
    51
williamr@4
    52
using _STLP_VENDOR_CSTD::strncpy;
williamr@4
    53
using _STLP_VENDOR_CSTD::strspn;
williamr@4
    54
williamr@4
    55
using _STLP_VENDOR_CSTD::strtok;
williamr@4
    56
#endif /* _STLP_NO_CSTD_FUNCTION_IMPORTS */