stdlib.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:5k
源码类别:

Symbian

开发平台:

Visual C++

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