亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? localcharset.c

?? linux 支持 NTFS-3G.linux-arm ntfs 文件體統的支持
?? C
字號:
/* Determine a canonical name for the current locale's character encoding.   Copyright (C) 2000-2006 Free Software Foundation, Inc.   This program is free software; you can redistribute it and/or modify it   under the terms of the GNU Library General Public License as published   by the Free Software Foundation; either version 2, or (at your option)   any later version.   This program is distributed in the hope that it will be useful,   but WITHOUT ANY WARRANTY; without even the implied warranty of   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU   Library General Public License for more details.   You should have received a copy of the GNU Library General Public   License along with this program; if not, write to the Free Software   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,   USA.  *//* Written by Bruno Haible <bruno@clisp.org>.  */#ifdef HAVE_CONFIG_H# include <config.h>#endif/* Specification.  */#include "localcharset.h"#if HAVE_STDDEF_H# include <stddef.h>#endif#include <stdio.h>#if HAVE_STRING_H# include <string.h>#else# include <strings.h>#endif#if HAVE_STDLIB_H# include <stdlib.h>#endif#if defined _WIN32 || defined __WIN32__# define WIN32_NATIVE#endif#if defined __EMX__/* Assume EMX program runs on OS/2, even if compiled under DOS.  */# define OS2#endif#if !defined WIN32_NATIVE# if HAVE_LANGINFO_CODESET#  include <langinfo.h># else#  if HAVE_SETLOCALE#   include <locale.h>#  endif# endif# ifdef __CYGWIN__#  define WIN32_LEAN_AND_MEAN#  include <windows.h># endif#elif defined WIN32_NATIVE# define WIN32_LEAN_AND_MEAN# include <windows.h>#endif#if defined OS2# define INCL_DOS# include <os2.h>#endif#if ENABLE_RELOCATABLE# include "relocatable.h"#else# define relocate(pathname) (pathname)#endif#if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__  /* Win32, Cygwin, OS/2, DOS */# define ISSLASH(C) ((C) == '/' || (C) == '\\')#endif#ifndef DIRECTORY_SEPARATOR# define DIRECTORY_SEPARATOR '/'#endif#ifndef ISSLASH# define ISSLASH(C) ((C) == DIRECTORY_SEPARATOR)#endif#if HAVE_DECL_GETC_UNLOCKED# undef getc# define getc getc_unlocked#endif/* The following static variable is declared 'volatile' to avoid a   possible multithread problem in the function get_charset_aliases. If we   are running in a threaded environment, and if two threads initialize   'charset_aliases' simultaneously, both will produce the same value,   and everything will be ok if the two assignments to 'charset_aliases'   are atomic. But I don't know what will happen if the two assignments mix.  */#if __STDC__ != 1# define volatile /* empty */#endif/* Pointer to the contents of the charset.alias file, if it has already been   read, else NULL.  Its format is:   ALIAS_1 '\0' CANONICAL_1 '\0' ... ALIAS_n '\0' CANONICAL_n '\0' '\0'  */static const char * volatile charset_aliases;/* Return a pointer to the contents of the charset.alias file.  */static const char *get_charset_aliases (void){  const char *cp;  cp = charset_aliases;  if (cp == NULL)    {#if !(defined VMS || defined WIN32_NATIVE || defined __CYGWIN__)      FILE *fp;      const char *dir;      const char *base = "charset.alias";      char *file_name;      /* Make it possible to override the charset.alias location.  This is	 necessary for running the testsuite before "make install".  */      dir = getenv ("CHARSETALIASDIR");      if (dir == NULL || dir[0] == '\0')	dir = relocate (LIBDIR);      /* Concatenate dir and base into freshly allocated file_name.  */      {	size_t dir_len = strlen (dir);	size_t base_len = strlen (base);	int add_slash = (dir_len > 0 && !ISSLASH (dir[dir_len - 1]));	file_name = (char *) malloc (dir_len + add_slash + base_len + 1);	if (file_name != NULL)	  {	    memcpy (file_name, dir, dir_len);	    if (add_slash)	      file_name[dir_len] = DIRECTORY_SEPARATOR;	    memcpy (file_name + dir_len + add_slash, base, base_len + 1);	  }      }      if (file_name == NULL || (fp = fopen (file_name, "r")) == NULL)	/* Out of memory or file not found, treat it as empty.  */	cp = "";      else	{	  /* Parse the file's contents.  */	  char *res_ptr = NULL;	  size_t res_size = 0;	  for (;;)	    {	      int c;	      char buf1[50+1];	      char buf2[50+1];	      size_t l1, l2;	      char *old_res_ptr;	      c = getc (fp);	      if (c == EOF)		break;	      if (c == '\n' || c == ' ' || c == '\t')		continue;	      if (c == '#')		{		  /* Skip comment, to end of line.  */		  do		    c = getc (fp);		  while (!(c == EOF || c == '\n'));		  if (c == EOF)		    break;		  continue;		}	      ungetc (c, fp);	      if (fscanf (fp, "%50s %50s", buf1, buf2) < 2)		break;	      l1 = strlen (buf1);	      l2 = strlen (buf2);	      old_res_ptr = res_ptr;	      if (res_size == 0)		{		  res_size = l1 + 1 + l2 + 1;		  res_ptr = (char *) malloc (res_size + 1);		}	      else		{		  res_size += l1 + 1 + l2 + 1;		  res_ptr = (char *) realloc (res_ptr, res_size + 1);		}	      if (res_ptr == NULL)		{		  /* Out of memory. */		  res_size = 0;		  if (old_res_ptr != NULL)		    free (old_res_ptr);		  break;		}	      strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1);	      strcpy (res_ptr + res_size - (l2 + 1), buf2);	    }	  fclose (fp);	  if (res_size == 0)	    cp = "";	  else	    {	      *(res_ptr + res_size) = '\0';	      cp = res_ptr;	    }	}      if (file_name != NULL)	free (file_name);#else# if defined VMS      /* To avoid the troubles of an extra file charset.alias_vms in the	 sources of many GNU packages, simply inline the aliases here.  */      /* The list of encodings is taken from the OpenVMS 7.3-1 documentation	 "Compaq C Run-Time Library Reference Manual for OpenVMS systems"	 section 10.7 "Handling Different Character Sets".  */      cp = "ISO8859-1" "\0" "ISO-8859-1" "\0"	   "ISO8859-2" "\0" "ISO-8859-2" "\0"	   "ISO8859-5" "\0" "ISO-8859-5" "\0"	   "ISO8859-7" "\0" "ISO-8859-7" "\0"	   "ISO8859-8" "\0" "ISO-8859-8" "\0"	   "ISO8859-9" "\0" "ISO-8859-9" "\0"	   /* Japanese */	   "eucJP" "\0" "EUC-JP" "\0"	   "SJIS" "\0" "SHIFT_JIS" "\0"	   "DECKANJI" "\0" "DEC-KANJI" "\0"	   "SDECKANJI" "\0" "EUC-JP" "\0"	   /* Chinese */	   "eucTW" "\0" "EUC-TW" "\0"	   "DECHANYU" "\0" "DEC-HANYU" "\0"	   "DECHANZI" "\0" "GB2312" "\0"	   /* Korean */	   "DECKOREAN" "\0" "EUC-KR" "\0";# endif# if defined WIN32_NATIVE || defined __CYGWIN__      /* To avoid the troubles of installing a separate file in the same	 directory as the DLL and of retrieving the DLL's directory at	 runtime, simply inline the aliases here.  */      cp = "CP936" "\0" "GBK" "\0"	   "CP1361" "\0" "JOHAB" "\0"	   "CP20127" "\0" "ASCII" "\0"	   "CP20866" "\0" "KOI8-R" "\0"	   "CP20936" "\0" "GB2312" "\0"	   "CP21866" "\0" "KOI8-RU" "\0"	   "CP28591" "\0" "ISO-8859-1" "\0"	   "CP28592" "\0" "ISO-8859-2" "\0"	   "CP28593" "\0" "ISO-8859-3" "\0"	   "CP28594" "\0" "ISO-8859-4" "\0"	   "CP28595" "\0" "ISO-8859-5" "\0"	   "CP28596" "\0" "ISO-8859-6" "\0"	   "CP28597" "\0" "ISO-8859-7" "\0"	   "CP28598" "\0" "ISO-8859-8" "\0"	   "CP28599" "\0" "ISO-8859-9" "\0"	   "CP28605" "\0" "ISO-8859-15" "\0"	   "CP38598" "\0" "ISO-8859-8" "\0"	   "CP51932" "\0" "EUC-JP" "\0"	   "CP51936" "\0" "GB2312" "\0"	   "CP51949" "\0" "EUC-KR" "\0"	   "CP51950" "\0" "EUC-TW" "\0"	   "CP54936" "\0" "GB18030" "\0"	   "CP65001" "\0" "UTF-8" "\0";# endif#endif      charset_aliases = cp;    }  return cp;}/* Determine the current locale's character encoding, and canonicalize it   into one of the canonical names listed in config.charset.   The result must not be freed; it is statically allocated.   If the canonical name cannot be determined, the result is a non-canonical   name.  */#ifdef STATICSTATIC#endifconst char *locale_charset (void){  const char *codeset;  const char *aliases;#if !(defined WIN32_NATIVE || defined OS2)# if HAVE_LANGINFO_CODESET  /* Most systems support nl_langinfo (CODESET) nowadays.  */  codeset = nl_langinfo (CODESET);#  ifdef __CYGWIN__  /* Cygwin 2006 does not have locales.  nl_langinfo (CODESET) always     returns "US-ASCII".  As long as this is not fixed, return the suffix     of the locale name from the environment variables (if present) or     the codepage as a number.  */  if (codeset != NULL && strcmp (codeset, "US-ASCII") == 0)    {      const char *locale;      static char buf[2 + 10 + 1];      locale = getenv ("LC_ALL");      if (locale == NULL || locale[0] == '\0')	{	  locale = getenv ("LC_CTYPE");	  if (locale == NULL || locale[0] == '\0')	    locale = getenv ("LANG");	}      if (locale != NULL && locale[0] != '\0')	{	  /* If the locale name contains an encoding after the dot, return	     it.  */	  const char *dot = strchr (locale, '.');	  if (dot != NULL)	    {	      const char *modifier;	      dot++;	      /* Look for the possible @... trailer and remove it, if any.  */	      modifier = strchr (dot, '@');	      if (modifier == NULL)		return dot;	      if (modifier - dot < sizeof (buf))		{		  memcpy (buf, dot, modifier - dot);		  buf [modifier - dot] = '\0';		  return buf;		}	    }	}      /* Woe32 has a function returning the locale's codepage as a number.  */      sprintf (buf, "CP%u", GetACP ());      codeset = buf;    }#  endif# else  /* On old systems which lack it, use setlocale or getenv.  */  const char *locale = NULL;  /* But most old systems don't have a complete set of locales.  Some     (like SunOS 4 or DJGPP) have only the C locale.  Therefore we don't     use setlocale here; it would return "C" when it doesn't support the     locale name the user has set.  */#  if HAVE_SETLOCALE && 0  locale = setlocale (LC_CTYPE, NULL);#  endif  if (locale == NULL || locale[0] == '\0')    {      locale = getenv ("LC_ALL");      if (locale == NULL || locale[0] == '\0')	{	  locale = getenv ("LC_CTYPE");	  if (locale == NULL || locale[0] == '\0')	    locale = getenv ("LANG");	}    }  /* On some old systems, one used to set locale = "iso8859_1". On others,     you set it to "language_COUNTRY.charset". In any case, we resolve it     through the charset.alias file.  */  codeset = locale;# endif#elif defined WIN32_NATIVE  static char buf[2 + 10 + 1];  /* Woe32 has a function returning the locale's codepage as a number.  */  sprintf (buf, "CP%u", GetACP ());  codeset = buf;#elif defined OS2  const char *locale;  static char buf[2 + 10 + 1];  ULONG cp[3];  ULONG cplen;  /* Allow user to override the codeset, as set in the operating system,     with standard language environment variables.  */  locale = getenv ("LC_ALL");  if (locale == NULL || locale[0] == '\0')    {      locale = getenv ("LC_CTYPE");      if (locale == NULL || locale[0] == '\0')	locale = getenv ("LANG");    }  if (locale != NULL && locale[0] != '\0')    {      /* If the locale name contains an encoding after the dot, return it.  */      const char *dot = strchr (locale, '.');      if (dot != NULL)	{	  const char *modifier;	  dot++;	  /* Look for the possible @... trailer and remove it, if any.  */	  modifier = strchr (dot, '@');	  if (modifier == NULL)	    return dot;	  if (modifier - dot < sizeof (buf))	    {	      memcpy (buf, dot, modifier - dot);	      buf [modifier - dot] = '\0';	      return buf;	    }	}      /* Resolve through the charset.alias file.  */      codeset = locale;    }  else    {      /* OS/2 has a function returning the locale's codepage as a number.  */      if (DosQueryCp (sizeof (cp), cp, &cplen))	codeset = "";      else	{	  sprintf (buf, "CP%u", cp[0]);	  codeset = buf;	}    }#endif  if (codeset == NULL)    /* The canonical name cannot be determined.  */    codeset = "";  /* Resolve alias. */  for (aliases = get_charset_aliases ();       *aliases != '\0';       aliases += strlen (aliases) + 1, aliases += strlen (aliases) + 1)    if (strcmp (codeset, aliases) == 0	|| (aliases[0] == '*' && aliases[1] == '\0'))      {	codeset = aliases + strlen (aliases) + 1;	break;      }  /* Don't return an empty string.  GNU libc and GNU libiconv interpret     the empty string as denoting "the locale's character encoding",     thus GNU libiconv would call this function a second time.  */  if (codeset[0] == '\0')    codeset = "ASCII";  return codeset;}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品sm在线观看| 亚洲国产精品一区二区尤物区| 丁香婷婷综合网| 亚洲曰韩产成在线| 久久久久久久综合色一本| 欧洲精品中文字幕| 国产成人精品aa毛片| 日韩和欧美的一区| 综合久久综合久久| 久久伊人中文字幕| 欧美一区二区三区电影| 日本韩国欧美三级| 国产福利一区在线观看| 免费观看一级欧美片| 亚洲一区二区高清| 国产日韩精品一区| 日韩精品中文字幕在线一区| 欧美伊人久久大香线蕉综合69| 成人免费视频国产在线观看| 91免费观看视频| 国产欧美一区二区精品婷婷| 日韩一区二区免费电影| 欧美在线免费观看亚洲| 99视频在线观看一区三区| 国产精品综合一区二区三区| 日本不卡视频一二三区| 亚洲午夜在线电影| 亚洲精品日韩一| 亚洲欧美日韩中文播放| 中文字幕日本不卡| 亚洲欧洲性图库| 色88888久久久久久影院野外| 国产成人福利片| 国产成人av福利| 国产精品18久久久久久久久| 国产一区二区成人久久免费影院| 美女网站视频久久| 欧美bbbbb| 一本色道久久综合亚洲精品按摩| 午夜精品在线看| 亚洲国产视频网站| 午夜亚洲福利老司机| 亚洲大尺度视频在线观看| 亚洲国产中文字幕| 日韩电影在线免费看| 丝袜a∨在线一区二区三区不卡| 亚洲bt欧美bt精品777| 午夜精品在线看| 久久99国产精品尤物| 精品无人区卡一卡二卡三乱码免费卡| 麻豆91在线播放| 国内精品第一页| 国产美女一区二区| 波多野结衣91| 欧美在线视频你懂得| 偷偷要91色婷婷| 蜜桃精品在线观看| 国产一区二区三区在线观看免费视频| 欧美日韩一区二区三区在线| 成人免费视频国产在线观看| 91亚洲国产成人精品一区二三| 在线免费观看日本一区| 欧美精品日韩精品| 日韩视频免费直播| 国产欧美日韩精品在线| 亚洲精品国产精华液| 欧美一区二区三区视频免费播放| 欧美mv日韩mv| 中文字幕一区二区三区乱码在线| 亚洲激情一二三区| 麻豆成人免费电影| 成人精品视频.| 欧美精品自拍偷拍| 久久久一区二区三区| 亚洲日本欧美天堂| 日本伊人午夜精品| 成人免费av资源| 欧美日韩不卡一区二区| 国产日产欧美一区二区视频| 亚洲精品高清在线| 国内精品国产三级国产a久久| 色综合一个色综合| 精品日韩在线观看| 一级日本不卡的影视| 久草在线在线精品观看| 91丨porny丨蝌蚪视频| 欧美一区二区精品在线| 国产精品免费视频网站| 午夜视频一区在线观看| 丝袜亚洲另类欧美综合| 国产精品亚洲视频| 欧美日韩精品久久久| 中文字幕不卡的av| 青青草国产精品亚洲专区无| 91论坛在线播放| 久久蜜臀精品av| 偷窥少妇高潮呻吟av久久免费| 丰满少妇久久久久久久| 欧美日韩小视频| 自拍偷拍亚洲激情| 国产真实精品久久二三区| 欧美日韩一区二区三区免费看| 国产精品私人影院| 91麻豆国产精品久久| 日韩美女一区二区三区四区| 亚洲日本免费电影| 国产美女在线精品| 日韩精品综合一本久道在线视频| 亚洲欧美国产77777| 福利一区福利二区| 日韩午夜电影av| 香蕉影视欧美成人| 在线精品亚洲一区二区不卡| 中文字幕第一区二区| 国产一区二区三区在线观看免费视频| 欧美肥妇bbw| 亚洲高清在线视频| 一本到不卡精品视频在线观看| 日本一区二区三区免费乱视频 | 欧美一区二区视频在线观看| 亚洲特级片在线| 亚洲三级理论片| 成人a级免费电影| 欧美激情一区二区三区在线| 国产一区二区三区精品欧美日韩一区二区三区 | 日韩一区二区三区视频| 亚洲成人免费视频| 欧美无人高清视频在线观看| 亚洲精品成人a在线观看| av一区二区三区黑人| 国产精品久久久久一区二区三区共| 激情图片小说一区| 欧美精品一区二区久久婷婷| 久久99深爱久久99精品| 精品日本一线二线三线不卡| 老司机一区二区| 久久新电视剧免费观看| 国产一区高清在线| 久久久久国色av免费看影院| 国产酒店精品激情| 26uuu国产一区二区三区| 国内成人免费视频| 国产精品天美传媒| 成人av资源站| 亚洲自拍欧美精品| 欧美精品精品一区| 青青草91视频| 久久久久久亚洲综合| 成人白浆超碰人人人人| 亚洲三级免费观看| 欧美日韩高清不卡| 精品一区二区三区久久久| 久久先锋影音av鲁色资源| 丰满亚洲少妇av| 一区二区三区鲁丝不卡| 欧美电影一区二区| 国产一区二区久久| 国产精品色在线| 色偷偷久久人人79超碰人人澡| 亚洲国产一区视频| 精品久久久久久久一区二区蜜臀| 色综合久久中文综合久久牛| 天天综合色天天| 91精品国产欧美一区二区成人| 精品一区二区三区在线视频| 国产拍揄自揄精品视频麻豆| 一本大道久久a久久综合| 日日欢夜夜爽一区| 久久久精品人体av艺术| 91亚洲精华国产精华精华液| 日本成人中文字幕在线视频| 久久久久青草大香线综合精品| a4yy欧美一区二区三区| 水蜜桃久久夜色精品一区的特点 | 成人黄色av网站在线| 亚洲线精品一区二区三区| 精品免费日韩av| 91麻豆国产精品久久| 另类小说一区二区三区| 中文字幕亚洲精品在线观看| 欧美猛男gaygay网站| 国产成人精品一区二区三区四区 | 欧美久久一区二区| 国产丶欧美丶日本不卡视频| 国产精品99久久不卡二区| 欧美日韩国产在线观看| 久久精品国产亚洲高清剧情介绍| 久久久不卡网国产精品一区| 91久久线看在观草草青青 | 韩日欧美一区二区三区| 亚洲精品乱码久久久久久日本蜜臀| 91精品国产综合久久小美女| a4yy欧美一区二区三区| 久久精品国产成人一区二区三区| 亚洲欧美激情视频在线观看一区二区三区 | 视频一区中文字幕国产| 国产精品第五页| 91成人国产精品| 亚洲成人手机在线| 亚洲天堂av一区|