utftest.c
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*
  2.  * testing of utf2wchar()
  3.  * $Id: utftest.c,v 1.2.4.1 1999/08/02 05:25:12 scrappy Exp $
  4.  */
  5. #include "regex/regex.h"
  6. #include "regex/utils.h"
  7. #include "regex/regex2.h"
  8. #include "regex/pg_wchar.h"
  9. main()
  10. {
  11. /* Example 1 from RFC2044 */
  12. char utf1[] = {0x41, 0xe2, 0x89, 0xa2, 0xce, 0x91, 0x2e, 0};
  13. /* Example 2 from RFC2044 */
  14. char utf2[] = {0x48, 0x69, 0x20, 0x4d, 0x6f, 0x6d, 0x20, 0xe2, 0x98, 0xba, 0x21, 0};
  15. /* Example 3 from RFC2044 */
  16. char utf3[] = {0xe6, 0x97, 0xa5, 0xe6, 0x9c, 0xac, 0xe8, 0xaa, 0x9e, 0};
  17. char    *utf[] = {utf1, utf2, utf3};
  18. pg_wchar ucs[128];
  19. pg_wchar   *p;
  20. int i;
  21. for (i = 0; i < sizeof(utf) / sizeof(char *); i++)
  22. {
  23. pg_utf2wchar(utf[i], ucs);
  24. p = ucs;
  25. while (*p)
  26. {
  27. printf("%04x ", *p);
  28. p++;
  29. }
  30. printf("n");
  31. }
  32. }