~ubuntu-branches/ubuntu/hardy/libterralib/hardy

« back to all changes in this revision

Viewing changes to src/STLport/using/cstring

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2005-11-25 22:32:59 UTC
  • Revision ID: james.westby@ubuntu.com-20051125223259-3zubal8ux4ki4fjg
Tags: upstream-3.0.3b2
ImportĀ upstreamĀ versionĀ 3.0.3b2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 */