charset.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:3k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*
  2.  * Copyright (C) 2001 Edmund Grimley Evans <edmundo@rano.org>
  3.  * 
  4.  * This program is free software; you can redistribute it and/or modify
  5.  * it under the terms of the GNU General Public License as published by
  6.  * the Free Software Foundation; either version 2 of the License, or
  7.  * (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.  */
  18. #include <stdlib.h>
  19. /*
  20.  * These functions are like the C library's mbtowc() and wctomb(),
  21.  * but instead of depending on the locale they always work in UTF-8,
  22.  * and they use int instead of wchar_t.
  23.  */
  24. int utf8_mbtowc(int *pwc, const char *s, size_t n);
  25. int utf8_wctomb(char *s, int wc);
  26. /*
  27.  * This is an object-oriented version of mbtowc() and wctomb().
  28.  * The caller first uses charset_find() to get a pointer to struct
  29.  * charset, then uses the mbtowc() and wctomb() methods on it.
  30.  * The function charset_max() gives the maximum length of a
  31.  * multibyte character in that encoding.
  32.  * This API is only appropriate for stateless encodings like UTF-8
  33.  * or ISO-8859-3, but I have no intention of implementing anything
  34.  * other than UTF-8 and 8-bit encodings.
  35.  *
  36.  * MINOR BUG: If there is no memory charset_find() may return 0 and
  37.  * there is no way to distinguish this case from an unknown encoding.
  38.  */
  39. struct charset;
  40. struct charset *charset_find(const char *code);
  41. int charset_mbtowc(struct charset *charset, int *pwc, const char *s, size_t n);
  42. int charset_wctomb(struct charset *charset, char *s, int wc);
  43. int charset_max(struct charset *charset);
  44. /*
  45.  * Function to convert a buffer from one encoding to another.
  46.  * Invalid bytes are replaced by '#', and characters that are
  47.  * not available in the target encoding are replaced by '?'.
  48.  * Each of TO and TOLEN may be zero if the result is not wanted.
  49.  * The input or output may contain null bytes, but the output
  50.  * buffer is also null-terminated, so it is all right to
  51.  * use charset_convert(fromcode, tocode, s, strlen(s), &t, 0).
  52.  *
  53.  * Return value:
  54.  *
  55.  *  -2 : memory allocation failed
  56.  *  -1 : unknown encoding
  57.  *   0 : data was converted exactly
  58.  *   1 : valid data was converted approximately (using '?')
  59.  *   2 : input was invalid (but still converted, using '#')
  60.  */
  61. int charset_convert(const char *fromcode, const char *tocode,
  62.     const char *from, size_t fromlen,
  63.     char **to, size_t *tolen);