stdlib.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:4k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef HLXSYS_STDLIB_H
  36. #define HLXSYS_STDLIB_H
  37. #include "hxtypes.h"
  38. #if defined(_OPENWAVE)
  39. // XXXSAB Include compiler <stdlib.h> so we can modify it???
  40. #ifdef _OPENWAVE_SIMULATOR
  41. #ifndef _WIN32
  42. #define STDLIB_UNDEF_WIN32
  43. #define _WIN32
  44. #endif /* _WIN32 */
  45. #endif /* _OPENWAVE_SIMULATOR */
  46. #include <stdlib.h>
  47. #undef itoa                     // just in case
  48. #ifdef STDLIB_UNDEF_WIN32
  49. #undef _WIN32
  50. #undef STDLIB_UNDEF_WIN32
  51. #endif /* STDLIB_UNDEF_WIN32 */
  52. // XXXSAB Define malloc()/free() wrappers for Openwave in here???
  53. #else
  54. #include <stdlib.h>
  55. #endif
  56. char* __helix_itoa(int val, char *str, int radix);
  57. char* __helix_i64toa(INT64 val, char *str, int radix);
  58. INT64 __helix_atoi64(char* str);
  59. void* __helix_bsearch( const void *key, const void *base, size_t num, 
  60.        size_t width, 
  61.        int (  *compare ) ( const void *elem1, 
  62.    const void *elem2 ) );
  63. int __helix_remove(const char* pPath);
  64. int __helix_putenv(const char* pStr);
  65. char* __helix_getenv(const char* pName);
  66. #if defined(_WINDOWS) && !defined(_OPENWAVE)
  67. #if !defined(WIN32_PLATFORM_PSPC)
  68. _inline char*
  69. i64toa(INT64 val, char* str, int radix)
  70. {
  71.     return _i64toa(val, str, radix);
  72. }
  73. #else /* !defined(WIN32_PLATFORM_PSPC) */
  74. _inline
  75. int remove(const char* pPath)
  76. {
  77.     return __helix_remove(pPath);
  78. }
  79. _inline
  80. char* getenv(const char* pName)
  81. {
  82.     return __helix_getenv(pName);
  83. }
  84. #define i64toa __helix_i64toa
  85. #define itoa __helix_itoa
  86. _inline
  87. void* bsearch( const void *key, const void *base, size_t num, 
  88.        size_t width, 
  89.        int ( *compare ) ( const void *elem1, 
  90.   const void *elem2 ) )
  91. {
  92.     return __helix_bsearch(key, base, num, width, compare);
  93. }
  94. #endif /* !defined(WIN32_PLATFORM_PSPC) */
  95. _inline INT64
  96. atoi64(const char* str)
  97. {
  98.     return _atoi64(str);
  99. }
  100. #endif /* _WINDOWS */
  101. #if defined (_MACINTOSH) 
  102. #define itoa __helix_itoa
  103. #define i64toa __helix_i64toa
  104. #define atoi64 __helix_atoi64
  105. #endif /* _MACINTOSH */
  106. #if defined (_UNIX) && !defined (__QNXNTO__)
  107. // Convert integer to string
  108. #define itoa __helix_itoa
  109. #define i64toa __helix_i64toa
  110. #define atoi64 __helix_atoi64
  111. #endif /* _UNIX */
  112. #if defined(_SYMBIAN)
  113. #define itoa __helix_itoa
  114. #define i64toa __helix_i64toa
  115. #define atoi64 __helix_atoi64
  116. #define putenv __helix_putenv
  117. #endif
  118. #if defined(_OPENWAVE)
  119. #define itoa(v,s,r) __helix_itoa((v),(s),(r))
  120. #define i64toa(v,s,r) __helix_i64toa((v),(s),(r))
  121. #define atoi64(s) __helix_atoi64((s))
  122. #define putenv __helix_putenv
  123. __inline int remove(const char* pPath)
  124. {
  125.     return __helix_remove(pPath);
  126. }
  127. #endif // _OPENWAVE
  128. #endif /* HLXSYS_STDLIB_H */