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

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

?? l10nflist.c

?? 一個windows上的加解密程式 提供方便的介面讓使用者操作
?? C
字號:
/* Copyright (C) 1995-1999, 2000, 2001 Free Software Foundation, Inc.   Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.   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 stpcpy().   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 <string.h>#if !HAVE_STRCHR && !defined _LIBC# ifndef strchr#  define strchr index# endif#endif#if defined _LIBC || defined HAVE_ARGZ_H# include <argz.h>#endif#include <ctype.h>#include <sys/types.h>#include <stdlib.h>#include "loadinfo.h"/* On some strange systems still no definition of NULL is found.  Sigh!  */#ifndef NULL# if defined __STDC__ && __STDC__#  define NULL ((void *) 0)# else#  define NULL 0# endif#endif/* @@ 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.  */# ifndef stpcpy#  define stpcpy(dest, src) __stpcpy(dest, src)# endif#else# ifndef HAVE_STPCPYstatic char *stpcpy PARAMS ((char *dest, const char *src));# endif#endif/* Define function which are usually not available.  */#if !defined _LIBC && !defined HAVE___ARGZ_COUNT/* Returns the number of strings in ARGZ.  */static size_t argz_count__ PARAMS ((const char *argz, size_t len));static size_targz_count__ (argz, len)     const char *argz;     size_t len;{  size_t count = 0;  while (len > 0)    {      size_t part_len = strlen (argz);      argz += part_len + 1;      len -= part_len + 1;      count++;    }  return count;}# undef __argz_count# define __argz_count(argz, len) argz_count__ (argz, len)#endif	/* !_LIBC && !HAVE___ARGZ_COUNT */#if !defined _LIBC && !defined HAVE___ARGZ_STRINGIFY/* Make '\0' separated arg vector ARGZ printable by converting all the '\0's   except the last into the character SEP.  */static void argz_stringify__ PARAMS ((char *argz, size_t len, int sep));static voidargz_stringify__ (argz, len, sep)     char *argz;     size_t len;     int sep;{  while (len > 0)    {      size_t part_len = strlen (argz);      argz += part_len;      len -= part_len + 1;      if (len > 0)	*argz++ = sep;    }}# undef __argz_stringify# define __argz_stringify(argz, len, sep) argz_stringify__ (argz, len, sep)#endif	/* !_LIBC && !HAVE___ARGZ_STRINGIFY */#if !defined _LIBC && !defined HAVE___ARGZ_NEXTstatic char *argz_next__ PARAMS ((char *argz, size_t argz_len,				  const char *entry));static char *argz_next__ (argz, argz_len, entry)     char *argz;     size_t argz_len;     const char *entry;{  if (entry)    {      if (entry < argz + argz_len)        entry = strchr (entry, '\0') + 1;      return entry >= argz + argz_len ? NULL : (char *) entry;    }  else    if (argz_len > 0)      return argz;    else      return 0;}# undef __argz_next# define __argz_next(argz, len, entry) argz_next__ (argz, len, entry)#endif	/* !_LIBC && !HAVE___ARGZ_NEXT *//* Return number of bits set in X.  */static int pop PARAMS ((int x));static inline intpop (x)     int x;{  /* We assume that no more than 16 bits are used.  */  x = ((x & ~0x5555) >> 1) + (x & 0x5555);  x = ((x & ~0x3333) >> 2) + (x & 0x3333);  x = ((x >> 4) + x) & 0x0f0f;  x = ((x >> 8) + x) & 0xff;  return x;}struct loaded_l10nfile *_nl_make_l10nflist (l10nfile_list, dirlist, dirlist_len, mask, language,		    territory, codeset, normalized_codeset, modifier, special,		    sponsor, revision, filename, do_allocate)     struct loaded_l10nfile **l10nfile_list;     const char *dirlist;     size_t dirlist_len;     int mask;     const char *language;     const char *territory;     const char *codeset;     const char *normalized_codeset;     const char *modifier;     const char *special;     const char *sponsor;     const char *revision;     const char *filename;     int do_allocate;{  char *abs_filename;  struct loaded_l10nfile *last = NULL;  struct loaded_l10nfile *retval;  char *cp;  size_t entries;  int cnt;  /* Allocate room for the full file name.  */  abs_filename = (char *) malloc (dirlist_len				  + strlen (language)				  + ((mask & TERRITORY) != 0				     ? strlen (territory) + 1 : 0)				  + ((mask & XPG_CODESET) != 0				     ? strlen (codeset) + 1 : 0)				  + ((mask & XPG_NORM_CODESET) != 0				     ? strlen (normalized_codeset) + 1 : 0)				  + (((mask & XPG_MODIFIER) != 0				      || (mask & CEN_AUDIENCE) != 0)				     ? strlen (modifier) + 1 : 0)				  + ((mask & CEN_SPECIAL) != 0				     ? strlen (special) + 1 : 0)				  + (((mask & CEN_SPONSOR) != 0				      || (mask & CEN_REVISION) != 0)				     ? (1 + ((mask & CEN_SPONSOR) != 0					     ? strlen (sponsor) + 1 : 0)					+ ((mask & CEN_REVISION) != 0					   ? strlen (revision) + 1 : 0)) : 0)				  + 1 + strlen (filename) + 1);  if (abs_filename == NULL)    return NULL;  retval = NULL;  last = NULL;  /* Construct file name.  */  memcpy (abs_filename, dirlist, dirlist_len);  __argz_stringify (abs_filename, dirlist_len, PATH_SEPARATOR);  cp = abs_filename + (dirlist_len - 1);  *cp++ = '/';  cp = stpcpy (cp, language);  if ((mask & TERRITORY) != 0)    {      *cp++ = '_';      cp = stpcpy (cp, territory);    }  if ((mask & XPG_CODESET) != 0)    {      *cp++ = '.';      cp = stpcpy (cp, codeset);    }  if ((mask & XPG_NORM_CODESET) != 0)    {      *cp++ = '.';      cp = stpcpy (cp, normalized_codeset);    }  if ((mask & (XPG_MODIFIER | CEN_AUDIENCE)) != 0)    {      /* This component can be part of both syntaces but has different	 leading characters.  For CEN we use `+', else `@'.  */      *cp++ = (mask & CEN_AUDIENCE) != 0 ? '+' : '@';      cp = stpcpy (cp, modifier);    }  if ((mask & CEN_SPECIAL) != 0)    {      *cp++ = '+';      cp = stpcpy (cp, special);    }  if ((mask & (CEN_SPONSOR | CEN_REVISION)) != 0)    {      *cp++ = ',';      if ((mask & CEN_SPONSOR) != 0)	cp = stpcpy (cp, sponsor);      if ((mask & CEN_REVISION) != 0)	{	  *cp++ = '_';	  cp = stpcpy (cp, revision);	}    }  *cp++ = '/';  stpcpy (cp, filename);  /* Look in list of already loaded domains whether it is already     available.  */  last = NULL;  for (retval = *l10nfile_list; retval != NULL; retval = retval->next)    if (retval->filename != NULL)      {	int compare = strcmp (retval->filename, abs_filename);	if (compare == 0)	  /* We found it!  */	  break;	if (compare < 0)	  {	    /* It's not in the list.  */	    retval = NULL;	    break;	  }	last = retval;      }  if (retval != NULL || do_allocate == 0)    {      free (abs_filename);      return retval;    }  retval = (struct loaded_l10nfile *)    malloc (sizeof (*retval) + (__argz_count (dirlist, dirlist_len)				* (1 << pop (mask))				* sizeof (struct loaded_l10nfile *)));  if (retval == NULL)    return NULL;  retval->filename = abs_filename;  retval->decided = (__argz_count (dirlist, dirlist_len) != 1		     || ((mask & XPG_CODESET) != 0			 && (mask & XPG_NORM_CODESET) != 0));  retval->data = NULL;  if (last == NULL)    {      retval->next = *l10nfile_list;      *l10nfile_list = retval;    }  else    {      retval->next = last->next;      last->next = retval;    }  entries = 0;  /* If the DIRLIST is a real list the RETVAL entry corresponds not to     a real file.  So we have to use the DIRLIST separation mechanism     of the inner loop.  */  cnt = __argz_count (dirlist, dirlist_len) == 1 ? mask - 1 : mask;  for (; cnt >= 0; --cnt)    if ((cnt & ~mask) == 0	&& ((cnt & CEN_SPECIFIC) == 0 || (cnt & XPG_SPECIFIC) == 0)	&& ((cnt & XPG_CODESET) == 0 || (cnt & XPG_NORM_CODESET) == 0))      {	/* Iterate over all elements of the DIRLIST.  */	char *dir = NULL;	while ((dir = __argz_next ((char *) dirlist, dirlist_len, dir))	       != NULL)	  retval->successor[entries++]	    = _nl_make_l10nflist (l10nfile_list, dir, strlen (dir) + 1, cnt,				  language, territory, codeset,				  normalized_codeset, modifier, special,				  sponsor, revision, filename, 1);      }  retval->successor[entries] = NULL;  return retval;}/* Normalize codeset name.  There is no standard for the codeset   names.  Normalization allows the user to use any of the common   names.  The return value is dynamically allocated and has to be   freed by the caller.  */const char *_nl_normalize_codeset (codeset, name_len)     const char *codeset;     size_t name_len;{  int len = 0;  int only_digit = 1;  char *retval;  char *wp;  size_t cnt;  for (cnt = 0; cnt < name_len; ++cnt)    if (isalnum (codeset[cnt]))      {	++len;	if (isalpha (codeset[cnt]))	  only_digit = 0;      }  retval = (char *) malloc ((only_digit ? 3 : 0) + len + 1);  if (retval != NULL)    {      if (only_digit)	wp = stpcpy (retval, "iso");      else	wp = retval;      for (cnt = 0; cnt < name_len; ++cnt)	if (isalpha (codeset[cnt]))	  *wp++ = tolower (codeset[cnt]);	else if (isdigit (codeset[cnt]))	  *wp++ = codeset[cnt];      *wp = '\0';    }  return (const char *) retval;}/* @@ begin of epilog @@ *//* We don't want libintl.a to depend on any other library.  So we   avoid the non-standard function stpcpy.  In GNU C Library this   function is available, though.  Also allow the symbol HAVE_STPCPY   to be defined.  */#if !_LIBC && !HAVE_STPCPYstatic char *stpcpy (dest, src)     char *dest;     const char *src;{  while ((*dest++ = *src++) != '\0')    /* Do nothing. */ ;  return dest - 1;}#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品萝li| 青青草视频一区| av在线不卡电影| 精品99999| 懂色av中文一区二区三区| 国产精品久久久久久久久动漫| 国产成人综合在线观看| 国产精品久久综合| 欧美理论片在线| av午夜一区麻豆| 视频一区中文字幕| 国产精品久久久99| 欧美精品久久99久久在免费线| 韩国精品免费视频| 一二三区精品视频| 久久综合色天天久久综合图片| av午夜精品一区二区三区| 丝瓜av网站精品一区二区| 国产精品视频一二| 日韩精品一区二区三区蜜臀| www.欧美精品一二区| 韩国女主播一区| 日本不卡视频在线| 伊人婷婷欧美激情| 亚洲欧美色综合| 国产精品国产自产拍高清av王其 | 国产精品亲子伦对白| 欧美曰成人黄网| 色综合色狠狠天天综合色| 国产激情91久久精品导航| 激情综合色综合久久综合| 一区二区三区小说| 亚洲最大成人网4388xx| 成人av免费网站| 中文字幕一区二区日韩精品绯色| 久久久久免费观看| 精品国产乱码久久| 久久综合一区二区| 国产欧美一区在线| 最新国产成人在线观看| 综合久久久久综合| 五月综合激情婷婷六月色窝| 亚洲午夜激情网页| 另类小说综合欧美亚洲| 激情国产一区二区| av一区二区三区黑人| 欧美三级乱人伦电影| 日韩一区二区在线看| 久久久久久久久久久久久夜| 亚洲欧美中日韩| 首页国产欧美久久| 国产xxx精品视频大全| 欧美综合视频在线观看| 欧美一级高清片| 亚洲最新视频在线观看| 国内成人自拍视频| 在线综合亚洲欧美在线视频| 久久久亚洲高清| 秋霞国产午夜精品免费视频| 91视频xxxx| 久久精子c满五个校花| 天堂久久久久va久久久久| 成+人+亚洲+综合天堂| 欧美精品123区| 国产精品乱码一区二三区小蝌蚪| 亚洲国产aⅴ成人精品无吗| 成人精品视频一区二区三区尤物| 欧美一二三区在线观看| 午夜国产精品影院在线观看| 色婷婷国产精品| 亚洲日本青草视频在线怡红院 | 麻豆91在线观看| 天天免费综合色| 在线亚洲一区观看| 亚洲摸摸操操av| a级精品国产片在线观看| 中文字幕欧美三区| 成人精品国产福利| 尤物在线观看一区| 欧美日韩精品一区二区天天拍小说| 玉米视频成人免费看| 91老司机福利 在线| 夜夜操天天操亚洲| 欧美最新大片在线看| 亚洲成a人片在线不卡一二三区| 欧美日韩在线综合| 国产麻豆成人精品| 亚洲精品成人精品456| 在线观看日韩电影| 国产一区在线观看视频| 日本一区二区三区四区在线视频| 91在线高清观看| 青青草伊人久久| 亚洲欧美激情小说另类| 正在播放亚洲一区| av毛片久久久久**hd| 午夜精品123| 亚洲日本乱码在线观看| 精品蜜桃在线看| 欧美中文字幕久久| 国产成人小视频| 日韩精品午夜视频| 亚洲免费色视频| 亚洲精品一区在线观看| 欧美三级一区二区| 成a人片亚洲日本久久| 国产一区二区三区免费| 香蕉成人伊视频在线观看| 中文字幕一区二区三区蜜月 | 丁香婷婷综合激情五月色| 亚洲午夜国产一区99re久久| 久久久久国产精品免费免费搜索| 在线精品国精品国产尤物884a| 亚洲资源中文字幕| 日韩一区二区不卡| 欧美午夜影院一区| 欧美色窝79yyyycom| 日本欧美一区二区在线观看| 色女孩综合影院| 成人黄色av电影| 国产成人免费视| 国产白丝精品91爽爽久久| 国产自产v一区二区三区c| 日韩成人av影视| 国产美女视频91| 成人国产在线观看| 一本色道亚洲精品aⅴ| 欧洲av一区二区嗯嗯嗯啊| 51精品视频一区二区三区| 欧美一区二区三区视频免费播放| 欧美日韩一区国产| 久久久久久9999| 亚洲精品乱码久久久久久日本蜜臀| 亚洲尤物在线视频观看| 亚洲国产精品麻豆| 国产a区久久久| 日韩精品专区在线影院观看| 久久久久久久久久久久久久久99| 国产精品理伦片| 免费成人av资源网| 色婷婷综合久久久| 国产日韩欧美a| 天堂蜜桃一区二区三区| 9l国产精品久久久久麻豆| 日韩限制级电影在线观看| 欧美国产精品中文字幕| 日韩高清中文字幕一区| 成人免费av网站| 久久久精品免费免费| 日韩成人免费在线| 91麻豆视频网站| 亚洲色图欧美偷拍| 风间由美性色一区二区三区| 日韩精品一区二区三区在线| 亚洲国产成人精品视频| 91官网在线免费观看| 亚洲欧洲中文日韩久久av乱码| 国产成人一级电影| 久久久亚洲精品一区二区三区| 日韩福利电影在线观看| 91精品午夜视频| 天天爽夜夜爽夜夜爽精品视频| 婷婷成人综合网| 欧美系列日韩一区| 免费在线观看日韩欧美| 日韩午夜激情av| 精品伊人久久久久7777人| 日韩欧美资源站| 国产电影精品久久禁18| 国产精品久久久久久亚洲伦 | 麻豆精品视频在线观看视频| 欧美一区二区视频观看视频| 丝袜美腿亚洲综合| 国产日韩成人精品| 一本色道亚洲精品aⅴ| 青青草原综合久久大伊人精品优势| 欧美一区二区三区免费观看视频| 丝袜美腿亚洲综合| 国产精品久久久久久久久快鸭| 色欧美片视频在线观看在线视频| 亚洲图片欧美一区| 国产欧美久久久精品影院 | 欧美性感一区二区三区| 久久精品国产99| 亚洲国产一区在线观看| 欧美精品一区二区三区视频 | 精东粉嫩av免费一区二区三区| 国产欧美日韩另类一区| 欧美福利视频导航| www.亚洲色图.com| 国产精品自拍毛片| 蜜臀av在线播放一区二区三区| 中文字幕亚洲在| 国产人妖乱国产精品人妖| 欧美一区二区三区不卡| 欧美视频中文字幕| 欧美视频在线一区| 日本电影亚洲天堂一区| 欧美在线免费观看亚洲| 99久久精品情趣|