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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? localealias.c

?? linux下的串口工具
?? C
字號(hào):
/* 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>#if defined _LIBC || defined HAVE___FSETLOCKING# include <stdio_ext.h>#endif#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>#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# define HAVE___FSETLOCKING	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/* Some optimizations for glibc.  */#ifdef _LIBC# define FEOF(fp)		feof_unlocked (fp)# define FGETS(buf, n, fp)	fgets_unlocked (buf, n, fp)#else# define FEOF(fp)		feof (fp)# define FGETS(buf, n, fp)	fgets (buf, n, fp)#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;  struct alias_map *retval;  const char *result = NULL;  size_t added;#ifdef _LIBC  __libc_lock_lock (lock);#endif  if (locale_alias_path == NULL)    locale_alias_path = LOCALE_ALIAS_PATH;  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;#ifdef HAVE___FSETLOCKING  /* No threads present.  */  __fsetlocking (fp, FSETLOCKING_BYCALLER);#endif  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 ((unsigned char) cp[0]))	++cp;      /* A leading '#' signals a comment line.  */      if (cp[0] != '\0' && cp[0] != '#')	{	  alias = cp++;	  while (cp[0] != '\0' && !isspace ((unsigned char) cp[0]))	    ++cp;	  /* Terminate alias name.  */	  if (cp[0] != '\0')	    *cp++ = '\0';	  /* Now look for the beginning of the value.  */	  while (isspace ((unsigned char) cp[0]))	    ++cp;	  if (cp[0] != '\0')	    {	      size_t alias_len;	      size_t value_len;	      value = cp++;	      while (cp[0] != '\0' && !isspace ((unsigned char) 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}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一区999| 成人sese在线| www.日韩av| 国产成人在线电影| 亚洲黄色小说网站| 久久久久久97三级| 欧美日韩1234| 91污在线观看| 国产69精品久久久久毛片| 午夜视频在线观看一区二区 | 久久精品人人爽人人爽| 一本色道久久综合狠狠躁的推荐| 国产在线乱码一区二区三区| 午夜欧美一区二区三区在线播放| 亚洲国产经典视频| 欧美成人一区二区三区在线观看| 91久久国产综合久久| 成人激情图片网| 国产精品综合一区二区三区| 国产精品99久久久久久久女警| 一区二区三区不卡视频在线观看| 精品成人佐山爱一区二区| 91黄色小视频| av电影在线观看一区| 国产精品一区二区果冻传媒| 免费的国产精品| 婷婷久久综合九色国产成人| 一区二区三区不卡在线观看 | 国内精品在线播放| 日本中文字幕不卡| 午夜欧美电影在线观看| 亚洲激情图片小说视频| 亚洲欧美日韩国产成人精品影院| 国产欧美精品一区aⅴ影院 | 大陆成人av片| 国产成人免费视频网站高清观看视频| 麻豆成人久久精品二区三区小说| 亚洲综合成人在线| 久久伊99综合婷婷久久伊| 欧美三级日韩三级国产三级| 91美女精品福利| 91麻豆国产在线观看| 色综合天天视频在线观看| 色嗨嗨av一区二区三区| 欧美中文字幕不卡| 精品婷婷伊人一区三区三| 欧美日韩国产电影| 日韩一区二区三区视频在线观看| 欧美二区乱c少妇| 日韩你懂的电影在线观看| 欧美tickling挠脚心丨vk| 精品国产免费久久| 国产女同性恋一区二区| 亚洲三级小视频| 亚洲高清视频在线| 免费观看在线色综合| 激情文学综合网| 成人成人成人在线视频| 色综合中文综合网| 一区二区三区四区亚洲| 亚洲欧美激情在线| 亚洲午夜激情网站| 免费观看在线综合| 懂色av一区二区夜夜嗨| a美女胸又www黄视频久久| 色8久久精品久久久久久蜜| 欧美二区在线观看| 国产日产欧美精品一区二区三区| 国产精品久久久久久久裸模| 亚洲国产日日夜夜| 精品在线免费视频| 不卡的av网站| 91精选在线观看| 中文字幕欧美激情| 亚洲亚洲精品在线观看| 激情深爱一区二区| 91视频国产观看| 日韩欧美国产一区二区三区| 国产精品午夜在线| 亚洲大片在线观看| 国产成人av电影在线播放| 在线免费观看一区| 久久婷婷久久一区二区三区| 亚洲精品国产无套在线观| 久久精品国产精品青草| 欧美激情一区二区三区蜜桃视频| 久久女同精品一区二区| 亚洲精品午夜久久久| 久久成人免费网站| 在线看国产一区二区| 337p粉嫩大胆色噜噜噜噜亚洲| 九九**精品视频免费播放| 91视频www| 久久综合色综合88| 亚洲午夜电影在线观看| 国产xxx精品视频大全| 在线不卡欧美精品一区二区三区| 欧美极品美女视频| 奇米四色…亚洲| 色国产精品一区在线观看| 久久―日本道色综合久久| 亚洲电影中文字幕在线观看| 懂色一区二区三区免费观看| 日韩网站在线看片你懂的| 尤物视频一区二区| 成人av中文字幕| 欧美va亚洲va| 日韩黄色免费电影| 色婷婷久久久亚洲一区二区三区| 久久精品欧美日韩精品 | 狠狠狠色丁香婷婷综合激情| 欧美日韩久久一区二区| 中文字幕在线一区免费| 国产乱子伦视频一区二区三区| 3751色影院一区二区三区| 一区二区三区四区亚洲| 不卡的电影网站| 欧美国产精品专区| 国产精品影视在线观看| 精品国产麻豆免费人成网站| 日本亚洲一区二区| 色综合 综合色| 久久影院午夜论| 日本成人在线看| 欧美精品色一区二区三区| 夜夜亚洲天天久久| 91免费视频网址| 中文字幕一区二区视频| jvid福利写真一区二区三区| 欧美激情一区二区三区四区| 国产成人免费在线观看不卡| 久久久国产精品不卡| 国产一区在线不卡| 久久久久久久久99精品| 国产一区二区免费在线| 久久嫩草精品久久久精品 | 国产一区二区三区精品欧美日韩一区二区三区| 欧美福利视频导航| 日韩电影网1区2区| 欧美一区二区三区四区五区| 日本91福利区| 欧美电视剧在线观看完整版| 九一久久久久久| 久久久青草青青国产亚洲免观| 5月丁香婷婷综合| 美女免费视频一区二区| 欧美精品一区二区三区视频| 91精品国产丝袜白色高跟鞋| 亚洲精品高清在线| 欧美三区在线观看| 秋霞电影网一区二区| 欧美r级电影在线观看| 国产成人自拍在线| 亚洲色图欧美偷拍| 欧美日韩电影在线| 美女精品自拍一二三四| 久久精品一二三| 97se狠狠狠综合亚洲狠狠| 亚洲国产精品人人做人人爽| 91麻豆精品91久久久久久清纯 | 成人免费电影视频| 亚洲欧美另类小说| 欧美一区二区三区婷婷月色| 国产精品一级二级三级| 亚洲精品视频在线观看网站| 在线不卡一区二区| 国产高清久久久久| 一区二区在线电影| 精品国产乱码久久久久久1区2区| 成人午夜在线免费| 亚洲成av人在线观看| 欧美精品一区二区在线播放 | 91久久久免费一区二区| 日本强好片久久久久久aaa| 国产三级欧美三级日产三级99 | 不卡一卡二卡三乱码免费网站| 一区二区三区中文免费| 精品剧情v国产在线观看在线| 不卡一卡二卡三乱码免费网站| 午夜精品福利一区二区三区蜜桃| 欧美精品一区二| 欧美图片一区二区三区| 国产一区二区三区日韩| 一区二区三区国产豹纹内裤在线 | 亚洲精品精品亚洲| 精品久久99ma| 欧美综合一区二区| 国产91富婆露脸刺激对白| 日韩和的一区二区| 亚洲欧美在线aaa| 欧美成人性福生活免费看| 91成人国产精品| 国产99久久久精品| 裸体在线国模精品偷拍| 亚洲尤物视频在线| 中文字幕免费观看一区| 精品国产乱码久久久久久蜜臀| 91啪九色porn原创视频在线观看| 欧美日韩三级在线| 成人av综合一区|