utf8.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * utf8.c: Test for UTF-8 encoding/decoding stuff
  3.  *****************************************************************************
  4.  * Copyright (C) 2006 Rémi Denis-Courmont
  5.  * $Id: f34a953c9ce95d2e95a38f1871b1d8ccfb111aff $
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU General Public License as published by
  9.  * the Free Software Foundation; either version 2 of the License, or
  10.  * (at your option) any later version.
  11.  *
  12.  * This program is distributed in the hope that it will be useful,
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  * GNU General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with this program; if not, write to the Free Software
  19.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  20.  *****************************************************************************/
  21. #ifdef HAVE_CONFIG_H
  22. # include "config.h"
  23. #endif
  24. #include <vlc_common.h>
  25. #include "vlc_charset.h"
  26. #include <stdio.h>
  27. #include <stdlib.h>
  28. #include <stdbool.h>
  29. static void test (const char *in, const char *out)
  30. {
  31.     bool isutf8 = !strcmp (in, out);
  32.     char *str = strdup (in);
  33.     if (str == NULL)
  34.         abort ();
  35.     if (isutf8)
  36.         printf (""%s" should be accepted...n", in);
  37.     else
  38.         printf (""%s" should be rewritten as "%s"...n", in, out);
  39.     if ((IsUTF8 (in) != NULL) != isutf8)
  40.     {
  41.         printf (" ERROR: IsUTF8 (%s) failedn", in);
  42.         exit (1);
  43.     }
  44.     if ((EnsureUTF8 (str) != NULL) != isutf8)
  45.     {
  46.         printf (" ERROR: EnsureUTF8 (%s) failedn", in);
  47.         exit (2);
  48.     }
  49.     if (strcmp (str, out))
  50.     {
  51.         printf (" ERROR: got "%s"n", str);
  52.         exit (3);
  53.     }
  54.     if ((EnsureUTF8 (str) == NULL) || IsUTF8 (str) == NULL)
  55.     {
  56.         printf (" ERROR: EnsureUTF8 (%s) is not UTF-8n", in);
  57.         exit (4);
  58.     }
  59.     free (str);
  60. }
  61. int main (void)
  62. {
  63.     (void)setvbuf (stdout, NULL, _IONBF, 0);
  64.     test ("", "");
  65.     test ("this_should_not_be_modified_1234",
  66.           "this_should_not_be_modified_1234");
  67.     test ("xFF", "?"); // invalid byte
  68.     test ("xEFxBBxBFHello", "xEFxBBxBFHello"); // BOM
  69.     test ("x00xE9", ""); // no conversion past end of string
  70.     test ("TxC3xA9lxC3xA9vision xE2x82xAC", "Télévision €");
  71.     test ("TxE9lxE9vision", "T?l?vision");
  72.     test ("xC1x94xC3xa9lxC3xA9vision", "??élévision"); /* overlong */
  73.     test ("HelxF0x83x85x87lo", "Hel????lo"); /* more overlong */
  74.     return 0;
  75. }