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

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

?? localealias.c

?? linux 下的超級終端 minicom
?? C
字號:
/* Handle aliases for locale names.   Copyright (C) 1995-1999, 2000, 2001 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307,   USA.  *//* Tell glibc's <string.h> to provide a prototype for mempcpy().   This must come before <config.h> because <config.h> may include   <features.h>, and once <features.h> has been included, it's too late.  */#ifndef _GNU_SOURCE# define _GNU_SOURCE    1#endif#ifdef HAVE_CONFIG_H# include <config.h>#endif#include <ctype.h>#include <stdio.h>#include <sys/types.h>#ifdef __GNUC__# define alloca __builtin_alloca# define HAVE_ALLOCA 1#else# if defined HAVE_ALLOCA_H || defined _LIBC#  include <alloca.h># else#  ifdef _AIX #pragma alloca#  else#   ifndef allocachar *alloca ();#   endif#  endif# endif#endif#include <stdlib.h>#include <string.h>#if !HAVE_STRCHR && !defined _LIBC# ifndef strchr#  define strchr index# endif#endif#include "gettextP.h"/* @@ end of prolog @@ */#ifdef _LIBC/* Rename the non ANSI C functions.  This is required by the standard   because some ANSI C functions will require linking with this object   file and the name space must not be polluted.  */# define strcasecmp __strcasecmp# ifndef mempcpy#  define mempcpy __mempcpy# endif# define HAVE_MEMPCPY	1/* We need locking here since we can be called from different places.  */# include <bits/libc-lock.h>__libc_lock_define_initialized (static, lock);#endif#ifndef internal_function# define internal_function#endif/* For those losing systems which don't have `alloca' we have to add   some additional code emulating it.  */#ifdef HAVE_ALLOCA# define freea(p) /* nothing */#else# define alloca(n) malloc (n)# define freea(p) free (p)#endif#if defined _LIBC_REENTRANT || defined HAVE_FGETS_UNLOCKED# undef fgets# define fgets(buf, len, s) fgets_unlocked (buf, len, s)#endif#if defined _LIBC_REENTRANT || defined HAVE_FEOF_UNLOCKED# undef feof# define feof(s) feof_unlocked (s)#endifstruct alias_map{  const char *alias;  const char *value;};static char *string_space;static size_t string_space_act;static size_t string_space_max;static struct alias_map *map;static size_t nmap;static size_t maxmap;/* Prototypes for local functions.  */static size_t read_alias_file PARAMS ((const char *fname, int fname_len))     internal_function;static int extend_alias_table PARAMS ((void));static int alias_compare PARAMS ((const struct alias_map *map1,				  const struct alias_map *map2));const char *_nl_expand_alias (name)    const char *name;{  static const char *locale_alias_path = LOCALE_ALIAS_PATH;  struct alias_map *retval;  const char *result = NULL;  size_t added;#ifdef _LIBC  __libc_lock_lock (lock);#endif  do    {      struct alias_map item;      item.alias = name;      if (nmap > 0)	retval = (struct alias_map *) bsearch (&item, map, nmap,					       sizeof (struct alias_map),					       (int (*) PARAMS ((const void *,								 const void *))						) alias_compare);      else	retval = NULL;      /* We really found an alias.  Return the value.  */      if (retval != NULL)	{	  result = retval->value;	  break;	}      /* Perhaps we can find another alias file.  */      added = 0;      while (added == 0 && locale_alias_path[0] != '\0')	{	  const char *start;	  while (locale_alias_path[0] == PATH_SEPARATOR)	    ++locale_alias_path;	  start = locale_alias_path;	  while (locale_alias_path[0] != '\0'		 && locale_alias_path[0] != PATH_SEPARATOR)	    ++locale_alias_path;	  if (start < locale_alias_path)	    added = read_alias_file (start, locale_alias_path - start);	}    }  while (added != 0);#ifdef _LIBC  __libc_lock_unlock (lock);#endif  return result;}static size_tinternal_functionread_alias_file (fname, fname_len)     const char *fname;     int fname_len;{  FILE *fp;  char *full_fname;  size_t added;  static const char aliasfile[] = "/locale.alias";  full_fname = (char *) alloca (fname_len + sizeof aliasfile);#ifdef HAVE_MEMPCPY  mempcpy (mempcpy (full_fname, fname, fname_len),	   aliasfile, sizeof aliasfile);#else  memcpy (full_fname, fname, fname_len);  memcpy (&full_fname[fname_len], aliasfile, sizeof aliasfile);#endif  fp = fopen (full_fname, "r");  freea (full_fname);  if (fp == NULL)    return 0;  added = 0;  while (!feof (fp))    {      /* It is a reasonable approach to use a fix buffer here because	 a) we are only interested in the first two fields	 b) these fields must be usable as file names and so must not	    be that long       */      char buf[BUFSIZ];      char *alias;      char *value;      char *cp;      if (fgets (buf, sizeof buf, fp) == NULL)	/* EOF reached.  */	break;      /* Possibly not the whole line fits into the buffer.  Ignore	 the rest of the line.  */      if (strchr (buf, '\n') == NULL)	{	  char altbuf[BUFSIZ];	  do	    if (fgets (altbuf, sizeof altbuf, fp) == NULL)	      /* Make sure the inner loop will be left.  The outer loop		 will exit at the `feof' test.  */	      break;	  while (strchr (altbuf, '\n') == NULL);	}      cp = buf;      /* Ignore leading white space.  */      while (isspace (cp[0]))	++cp;      /* A leading '#' signals a comment line.  */      if (cp[0] != '\0' && cp[0] != '#')	{	  alias = cp++;	  while (cp[0] != '\0' && !isspace (cp[0]))	    ++cp;	  /* Terminate alias name.  */	  if (cp[0] != '\0')	    *cp++ = '\0';	  /* Now look for the beginning of the value.  */	  while (isspace (cp[0]))	    ++cp;	  if (cp[0] != '\0')	    {	      size_t alias_len;	      size_t value_len;	      value = cp++;	      while (cp[0] != '\0' && !isspace (cp[0]))		++cp;	      /* Terminate value.  */	      if (cp[0] == '\n')		{		  /* This has to be done to make the following test		     for the end of line possible.  We are looking for		     the terminating '\n' which do not overwrite here.  */		  *cp++ = '\0';		  *cp = '\n';		}	      else if (cp[0] != '\0')		*cp++ = '\0';	      if (nmap >= maxmap)		if (__builtin_expect (extend_alias_table (), 0))		  return added;	      alias_len = strlen (alias) + 1;	      value_len = strlen (value) + 1;	      if (string_space_act + alias_len + value_len > string_space_max)		{		  /* Increase size of memory pool.  */		  size_t new_size = (string_space_max				     + (alias_len + value_len > 1024					? alias_len + value_len : 1024));		  char *new_pool = (char *) realloc (string_space, new_size);		  if (new_pool == NULL)		    return added;		  if (__builtin_expect (string_space != new_pool, 0))		    {		      size_t i;		      for (i = 0; i < nmap; i++)			{			  map[i].alias += new_pool - string_space;			  map[i].value += new_pool - string_space;			}		    }		  string_space = new_pool;		  string_space_max = new_size;		}	      map[nmap].alias = memcpy (&string_space[string_space_act],					alias, alias_len);	      string_space_act += alias_len;	      map[nmap].value = memcpy (&string_space[string_space_act],					value, value_len);	      string_space_act += value_len;	      ++nmap;	      ++added;	    }	}    }  /* Should we test for ferror()?  I think we have to silently ignore     errors.  --drepper  */  fclose (fp);  if (added > 0)    qsort (map, nmap, sizeof (struct alias_map),	   (int (*) PARAMS ((const void *, const void *))) alias_compare);  return added;}static intextend_alias_table (){  size_t new_size;  struct alias_map *new_map;  new_size = maxmap == 0 ? 100 : 2 * maxmap;  new_map = (struct alias_map *) realloc (map, (new_size						* sizeof (struct alias_map)));  if (new_map == NULL)    /* Simply don't extend: we don't have any more core.  */    return -1;  map = new_map;  maxmap = new_size;  return 0;}#ifdef _LIBCstatic void __attribute__ ((unused))free_mem (void){  if (string_space != NULL)    free (string_space);  if (map != NULL)    free (map);}text_set_element (__libc_subfreeres, free_mem);#endifstatic intalias_compare (map1, map2)     const struct alias_map *map1;     const struct alias_map *map2;{#if defined _LIBC || defined HAVE_STRCASECMP  return strcasecmp (map1->alias, map2->alias);#else  const unsigned char *p1 = (const unsigned char *) map1->alias;  const unsigned char *p2 = (const unsigned char *) map2->alias;  unsigned char c1, c2;  if (p1 == p2)    return 0;  do    {      /* I know this seems to be odd but the tolower() function in	 some systems libc cannot handle nonalpha characters.  */      c1 = isupper (*p1) ? tolower (*p1) : *p1;      c2 = isupper (*p2) ? tolower (*p2) : *p2;      if (c1 == '\0')	break;      ++p1;      ++p2;    }  while (c1 == c2);  return c1 - c2;#endif}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩精品一二三区| 欧美久久久久免费| 精久久久久久久久久久| 午夜av一区二区| 午夜精品久久久久久久久久久 | 国产精品成人免费精品自在线观看| 91精品久久久久久久99蜜桃| 欧美精品乱码久久久久久 | 国产一区不卡精品| 老司机一区二区| 精品一区二区三区在线播放| 久久国产精品99久久人人澡| 韩国一区二区视频| 成人av在线观| 色菇凉天天综合网| 在线播放国产精品二区一二区四区| 欧美日韩国产高清一区| 91麻豆精品国产91久久久久| 日韩欧美中文一区二区| 国产欧美日产一区| 伊人一区二区三区| 日韩专区中文字幕一区二区| 美国毛片一区二区三区| 国产精品 欧美精品| 色噜噜狠狠色综合欧洲selulu| 欧美人与性动xxxx| 精品国产3级a| 国产精品乱人伦| 日韩国产成人精品| 丁香婷婷综合网| 精品视频一区二区不卡| 久久久99久久| 一区二区三区精品| 国产在线播放一区| 欧美伊人久久久久久午夜久久久久| 欧美大胆人体bbbb| 一区二区三区在线播放| 国产精品77777| 欧美日韩免费一区二区三区视频| 欧美mv和日韩mv的网站| 亚洲免费在线视频| 国产成人一级电影| 欧美一级免费大片| 一区二区三区不卡视频在线观看| 精品午夜一区二区三区在线观看| 一本色道久久综合精品竹菊| 亚洲精品在线观看网站| 亚洲综合另类小说| aaa欧美大片| 久久久国产一区二区三区四区小说 | 欧美精品久久一区| 欧美激情一区不卡| 国内外成人在线视频| 欧美少妇一区二区| 中文字幕亚洲精品在线观看| 国产在线视频一区二区三区| 欧美精品日韩一本| 亚洲高清免费视频| 色呦呦网站一区| 国产精品久久网站| 国产精品一线二线三线精华| 欧美一级夜夜爽| 日韩成人伦理电影在线观看| 日本久久一区二区三区| 国产拍揄自揄精品视频麻豆| 老司机精品视频在线| 欧美日本一区二区在线观看| 亚洲伊人伊色伊影伊综合网| 色综合天天天天做夜夜夜夜做| 国产视频一区不卡| 国产高清精品网站| 国产亚洲午夜高清国产拍精品| 久久99热狠狠色一区二区| 91丝袜国产在线播放| 中文字幕一区二区不卡| 91在线视频在线| 综合久久久久久| 91片在线免费观看| 亚洲精品国产无天堂网2021| 91福利在线观看| 亚洲成人一区二区| 欧美精品 国产精品| 日韩精品电影在线观看| 日韩亚洲欧美在线| 激情综合色播五月| 久久这里只有精品首页| 国产精品91xxx| 亚洲欧洲日韩在线| 欧美中文字幕亚洲一区二区va在线| 亚洲精品成人精品456| 欧美日韩国产综合视频在线观看| 天天做天天摸天天爽国产一区 | 欧美性xxxxx极品少妇| 亚洲大型综合色站| 日韩欧美aaaaaa| 成人免费不卡视频| 一区二区三区精品视频在线| 这里只有精品视频在线观看| 日本视频免费一区| 国产欧美日韩亚州综合| 99国产精品国产精品久久| 亚洲成av人影院在线观看网| 欧美tickle裸体挠脚心vk| 成人精品国产免费网站| 亚洲曰韩产成在线| 欧美大片在线观看一区| 成人黄色777网| 亚洲成av人片一区二区三区| 精品福利一二区| 99久久精品免费观看| 午夜激情久久久| 国产欧美日本一区视频| 欧美日韩国产成人在线91| 国产精品一区二区男女羞羞无遮挡| 中文字幕在线一区二区三区| 欧美喷潮久久久xxxxx| 国产一区二区三区电影在线观看| 亚洲欧美视频一区| 精品国产百合女同互慰| 在线观看国产日韩| 国产麻豆一精品一av一免费| 亚洲在线成人精品| 中文字幕精品在线不卡| 日韩午夜电影av| 色综合亚洲欧洲| 国产一区91精品张津瑜| 亚洲3atv精品一区二区三区| 国产精品情趣视频| 久久久亚洲综合| 91精品国产综合久久蜜臀| 91尤物视频在线观看| 激情另类小说区图片区视频区| 亚洲午夜视频在线| 亚洲视频小说图片| 国产情人综合久久777777| 日韩精品中文字幕一区二区三区| 欧美在线免费观看视频| 波多野结衣欧美| 高清不卡一区二区| 国产精品资源在线| 精品一区二区三区免费| 美女在线观看视频一区二区| 一区二区三区日韩精品视频| 亚洲视频小说图片| 国产精品高潮呻吟| 国产日韩欧美高清| 久久色.com| 久久综合九色综合97婷婷| 91精品国产91久久久久久一区二区| 欧美在线你懂得| 在线亚洲精品福利网址导航| 色88888久久久久久影院按摩| 风间由美一区二区av101| 成人蜜臀av电影| 9i在线看片成人免费| 成人免费电影视频| 91视频在线观看| 91黄色小视频| 欧美久久久久久久久久| 在线成人av网站| 精品少妇一区二区三区日产乱码| 日韩美女主播在线视频一区二区三区| 在线成人午夜影院| 精品99久久久久久| 国产欧美一区二区精品性| 国产精品久久久爽爽爽麻豆色哟哟 | 国产欧美精品一区| 国产精品少妇自拍| 亚洲精品久久久蜜桃| 亚洲黄色av一区| 日韩激情中文字幕| 国产一区二区三区在线看麻豆| 久久精品国产亚洲aⅴ| 国产精品亚洲第一| 99久久精品情趣| 欧美日韩成人综合天天影院| 69堂亚洲精品首页| 久久精品亚洲精品国产欧美 | 午夜亚洲福利老司机| 麻豆精品视频在线| 成人免费视频网站在线观看| 色婷婷av一区二区三区gif| 欧美午夜精品理论片a级按摩| 欧美一级日韩一级| 国产精品国产三级国产aⅴ中文| 一区二区视频在线| 激情欧美一区二区| 色噜噜狠狠成人中文综合| 日韩欧美国产wwwww| 亚洲图片激情小说| 免费观看久久久4p| 99国产精品久久久久久久久久| 欧美日韩不卡一区二区| 国产视频一区二区在线| 天堂久久一区二区三区| 播五月开心婷婷综合| 日韩久久免费av| 亚洲午夜精品久久久久久久久| 国产精品亚洲专一区二区三区| 在线视频你懂得一区|