SWIstring.h
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:4k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. /****************License************************************************
  2.  * Vocalocity OpenVXI
  3.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *  
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  18.  * registered trademarks of Vocalocity, Inc. 
  19.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  20.  * by Vocalocity.
  21.  ***********************************************************************/
  22. #ifndef _SWISTRING_H_
  23. #define _SWISTRING_H_
  24. #include <SWIchar.h>
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. /**
  29.  * addtogroup Character
  30.  */
  31. /*@{*/
  32.   /* li_string.cpp */
  33. /// Convert a string to double 
  34. extern double SWIatof( const char *str);
  35. /// Convert a string to float
  36. extern float SWIatofloat( const char *str);
  37. /// Convert a double to a string
  38. extern SWIcharResult SWIdtostr(double d, char *str, int len);
  39. /// Convert a double to a wide string
  40. extern SWIcharResult SWIdtowcs(double d, wchar_t *wstr, int len);
  41.   /* SWIstring.c */
  42. /// Convert a wide string to double 
  43. double SWIwcstod( const wchar_t *wstr);
  44. /// Convert a wide string to float 
  45. float SWIwcstof( const wchar_t *wstr);
  46. /// Convert a wide string to float
  47. SWIcharResult SWIwtof(const wchar_t *wstr, float *fval);
  48. /// Convert a narrow string to wide
  49. SWIcharResult SWIstrtowcs(const char *str, wchar_t *wstr, int len);
  50. /// Convert a wide string to narrow
  51. SWIcharResult SWIwcstostr(const wchar_t *wstr, char *str, int len);
  52. /// Convert a integer to a wide string
  53. SWIcharResult SWIitowcs(int i, wchar_t *wstr, int len);
  54. /// Convert a integer to a wide string
  55. SWIcharResult SWIwcstoi(const wchar_t *wstr, int *pi);
  56. /// Convert a wide string to an integer
  57. int SWIwtoi(const wchar_t *wstr);
  58. /// Compares a wide string to a narrow string
  59. int SWIwcsstrcmp(const wchar_t *w, const char *str);
  60. /**
  61.  * Tests that the given wchar string contains only ASCII 
  62.  * characters, which are any character with a value less 
  63.  * than than or equal to 0x7F.
  64.  *
  65.  * @param wstr The wide string to test
  66.  * @return non-zero if the string is all ascii
  67.  */
  68. int SWIisascii(const wchar_t *wstr);
  69. /**
  70.  * Tests that the given wchar string contains only LATIN-1 
  71.  * characters, which are any character with a value less 
  72.  * than than or equal to 0xFF.
  73.  *
  74.  * @param wstr The wide string to test
  75.  * @return non-zero if the string is all Latin-1
  76.  */
  77. int SWIislatin1(const wchar_t *wstr);
  78. /**
  79.  * Tests that the given wchar string
  80.  *    - does not contain high surrogates (D800 to DBFF)
  81.  *    - does not contain non-characters (FFFE and FFFF)
  82.  *    - the top 16-bit of 32-bit wchar are 0
  83.  *
  84.  * @param wstr The wide string to test
  85.  * @return non-zero if the string is all Unicode.
  86.  */
  87. int SWIisvalid_unicode(const wchar_t *wstr);
  88. /// Find the next token in a wide string.
  89. wchar_t* SWIwcstok (wchar_t* wcs, const wchar_t* delim, wchar_t** ptr);
  90. /// Find the next token in a string.
  91. char *SWIstrtok(char *str, const char *delim, char **ptr);
  92. /*@}*/
  93. #ifdef __cplusplus
  94. }
  95. #endif
  96. #endif