sl@0
|
1 |
using _STLP_VENDOR_CSTD::size_t;
|
sl@0
|
2 |
|
sl@0
|
3 |
#if !defined (_STLP_NO_CSTD_FUNCTION_IMPORTS)
|
sl@0
|
4 |
# if defined (__MSL__) && __MC68K__ && !_No_BlockMove && __dest_os == __mac_os
|
sl@0
|
5 |
# undef memcpy
|
sl@0
|
6 |
# undef memmove
|
sl@0
|
7 |
inline void* memcpy(void* dst, const void* src, size_t len)
|
sl@0
|
8 |
{ return _STLP_VENDOR_CSTD::__memcpy(dst, src, len); }
|
sl@0
|
9 |
inline void* memmove(void* dst, const void* src, size_t len)
|
sl@0
|
10 |
{ return _STLP_VENDOR_CSTD::__memmove(dst, src, len); }
|
sl@0
|
11 |
# else
|
sl@0
|
12 |
using _STLP_VENDOR_CSTD::memmove;
|
sl@0
|
13 |
using _STLP_VENDOR_CSTD::memcpy;
|
sl@0
|
14 |
# endif
|
sl@0
|
15 |
|
sl@0
|
16 |
# if !defined (_STLP_WCE)
|
sl@0
|
17 |
// these functions just don't exist on Windows CE
|
sl@0
|
18 |
using _STLP_VENDOR_CSTD::strcoll;
|
sl@0
|
19 |
using _STLP_VENDOR_CSTD::strerror;
|
sl@0
|
20 |
using _STLP_VENDOR_CSTD::strxfrm;
|
sl@0
|
21 |
# endif
|
sl@0
|
22 |
|
sl@0
|
23 |
# if defined (__BORLANDC__)
|
sl@0
|
24 |
extern "C++" {
|
sl@0
|
25 |
# endif
|
sl@0
|
26 |
using _STLP_VENDOR_CSTD::memchr;
|
sl@0
|
27 |
using _STLP_VENDOR_CSTD::strchr;
|
sl@0
|
28 |
using _STLP_VENDOR_CSTD::strpbrk;
|
sl@0
|
29 |
using _STLP_VENDOR_CSTD::strrchr;
|
sl@0
|
30 |
using _STLP_VENDOR_CSTD::strstr;
|
sl@0
|
31 |
# if defined (__BORLANDC__)
|
sl@0
|
32 |
}
|
sl@0
|
33 |
# endif
|
sl@0
|
34 |
|
sl@0
|
35 |
using _STLP_VENDOR_CSTD::memcmp;
|
sl@0
|
36 |
using _STLP_VENDOR_CSTD::memset;
|
sl@0
|
37 |
|
sl@0
|
38 |
using _STLP_VENDOR_CSTD::strcat;
|
sl@0
|
39 |
|
sl@0
|
40 |
# if !defined (strcmp)
|
sl@0
|
41 |
using _STLP_VENDOR_CSTD::strcmp;
|
sl@0
|
42 |
# endif
|
sl@0
|
43 |
|
sl@0
|
44 |
# if !defined (strcpy)
|
sl@0
|
45 |
using _STLP_VENDOR_CSTD::strcpy;
|
sl@0
|
46 |
# endif
|
sl@0
|
47 |
using _STLP_VENDOR_CSTD::strcspn;
|
sl@0
|
48 |
using _STLP_VENDOR_CSTD::strlen;
|
sl@0
|
49 |
using _STLP_VENDOR_CSTD::strncat;
|
sl@0
|
50 |
using _STLP_VENDOR_CSTD::strncmp;
|
sl@0
|
51 |
|
sl@0
|
52 |
using _STLP_VENDOR_CSTD::strncpy;
|
sl@0
|
53 |
using _STLP_VENDOR_CSTD::strspn;
|
sl@0
|
54 |
|
sl@0
|
55 |
using _STLP_VENDOR_CSTD::strtok;
|
sl@0
|
56 |
#endif /* _STLP_NO_CSTD_FUNCTION_IMPORTS */
|