epoc32/include/stdapis/stlport/using/cstring
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 0 061f57f2323e
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.
     1 using _STLP_VENDOR_CSTD::size_t;
     2 
     3 #  ifndef _STLP_NO_CSTD_FUNCTION_IMPORTS
     4 #   if defined(__MSL__) && __MC68K__ && !_No_BlockMove && __dest_os == __mac_os
     5 #    undef memcpy
     6 #    undef memmove
     7 inline void* memcpy(void* dst, const void* src, size_t len)
     8 {
     9 	return _STLP_VENDOR_CSTD::__memcpy(dst, src, len);
    10 }
    11 inline void* memmove(void* dst, const void* src, size_t len)
    12 {
    13 	return _STLP_VENDOR_CSTD::__memmove(dst, src, len);
    14 }
    15 #   else
    16 
    17  using _STLP_VENDOR_CSTD::memmove;
    18  using _STLP_VENDOR_CSTD::memcpy;
    19 
    20 #   endif
    21 
    22 # if ! defined (__BORLANDC__)
    23 using _STLP_VENDOR_CSTD::memchr;
    24 using _STLP_VENDOR_CSTD::strchr;
    25 using _STLP_VENDOR_CSTD::strpbrk;
    26 using _STLP_VENDOR_CSTD::strrchr;
    27 using _STLP_VENDOR_CSTD::strstr;
    28 # endif
    29 
    30 using _STLP_VENDOR_CSTD::memcmp;
    31 using _STLP_VENDOR_CSTD::memset;
    32 
    33 using _STLP_VENDOR_CSTD::strcat;
    34 
    35 # if !defined (strcmp)
    36 using _STLP_VENDOR_CSTD::strcmp;
    37 # endif
    38 
    39 using _STLP_VENDOR_CSTD::strcoll;
    40 # if !defined (strcpy)
    41 using _STLP_VENDOR_CSTD::strcpy;
    42 # endif
    43 using _STLP_VENDOR_CSTD::strcspn;
    44 using _STLP_VENDOR_CSTD::strerror;
    45 using _STLP_VENDOR_CSTD::strlen;
    46 using _STLP_VENDOR_CSTD::strncat;
    47 using _STLP_VENDOR_CSTD::strncmp;
    48 
    49 using _STLP_VENDOR_CSTD::strncpy;
    50 using _STLP_VENDOR_CSTD::strspn;
    51 
    52 using _STLP_VENDOR_CSTD::strtok;
    53 using _STLP_VENDOR_CSTD::strxfrm;
    54 #  endif /* _STLP_NO_CSTD_FUNCTION_IMPORTS */