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

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

?? dcigettext.c

?? 磁盤管理工具,主要管理光盤信息和內(nèi)容希望大家喜歡
?? C
?? 第 1 頁(yè) / 共 4 頁(yè)
字號(hào):
#ifdef _LIBC/* List of blocks allocated for translations.  */typedef struct transmem_list{  struct transmem_list *next;  char data[ZERO];} transmem_block_t;static struct transmem_list *transmem_list;#elsetypedef unsigned char transmem_block_t;#endif/* Names for the libintl functions are a problem.  They must not clash   with existing names and they should follow ANSI C.  But this source   code is also used in GNU C Library where the names have a __   prefix.  So we have to make a difference here.  */#ifdef _LIBC# define DCIGETTEXT __dcigettext#else# define DCIGETTEXT libintl_dcigettext#endif/* Lock variable to protect the global data in the gettext implementation.  */gl_rwlock_define_initialized (, _nl_state_lock attribute_hidden)/* Checking whether the binaries runs SUID must be done and glibc provides   easier methods therefore we make a difference here.  */#ifdef _LIBC# define ENABLE_SECURE __libc_enable_secure# define DETERMINE_SECURE#else# ifndef HAVE_GETUID#  define getuid() 0# endif# ifndef HAVE_GETGID#  define getgid() 0# endif# ifndef HAVE_GETEUID#  define geteuid() getuid()# endif# ifndef HAVE_GETEGID#  define getegid() getgid()# endifstatic int enable_secure;# define ENABLE_SECURE (enable_secure == 1)# define DETERMINE_SECURE \  if (enable_secure == 0)						      \    {									      \      if (getuid () != geteuid () || getgid () != getegid ())		      \	enable_secure = 1;						      \      else								      \	enable_secure = -1;						      \    }#endif/* Get the function to evaluate the plural expression.  */#include "eval-plural.h"/* Look up MSGID in the DOMAINNAME message catalog for the current   CATEGORY locale and, if PLURAL is nonzero, search over string   depending on the plural form determined by N.  */#ifdef IN_LIBGLOCALEchar *gl_dcigettext (const char *domainname,	       const char *msgid1, const char *msgid2,	       int plural, unsigned long int n,	       int category,	       const char *localename, const char *encoding)#elsechar *DCIGETTEXT (const char *domainname, const char *msgid1, const char *msgid2,	    int plural, unsigned long int n, int category)#endif{#ifndef HAVE_ALLOCA  struct block_list *block_list = NULL;#endif  struct loaded_l10nfile *domain;  struct binding *binding;  const char *categoryname;  const char *categoryvalue;  const char *dirname;  char *xdomainname;  char *single_locale;  char *retval;  size_t retlen;  int saved_errno;#if defined HAVE_TSEARCH || defined _LIBC  struct known_translation_t *search;  struct known_translation_t **foundp = NULL;  size_t msgid_len;# if defined HAVE_PER_THREAD_LOCALE && !defined IN_LIBGLOCALE  const char *localename;# endif#endif  size_t domainname_len;  /* If no real MSGID is given return NULL.  */  if (msgid1 == NULL)    return NULL;#ifdef _LIBC  if (category < 0 || category >= __LC_LAST || category == LC_ALL)    /* Bogus.  */    return (plural == 0	    ? (char *) msgid1	    /* Use the Germanic plural rule.  */	    : n == 1 ? (char *) msgid1 : (char *) msgid2);#endif  gl_rwlock_rdlock (_nl_state_lock);  /* If DOMAINNAME is NULL, we are interested in the default domain.  If     CATEGORY is not LC_MESSAGES this might not make much sense but the     definition left this undefined.  */  if (domainname == NULL)    domainname = _nl_current_default_domain;  /* OS/2 specific: backward compatibility with older libintl versions  */#ifdef LC_MESSAGES_COMPAT  if (category == LC_MESSAGES_COMPAT)    category = LC_MESSAGES;#endif#if defined HAVE_TSEARCH || defined _LIBC  msgid_len = strlen (msgid1) + 1;  /* Try to find the translation among those which we found at     some time.  */  search = (struct known_translation_t *)	   alloca (offsetof (struct known_translation_t, msgid) + msgid_len);  memcpy (search->msgid, msgid1, msgid_len);  search->domainname = domainname;  search->category = category;# ifdef HAVE_PER_THREAD_LOCALE#  ifndef IN_LIBGLOCALE#   ifdef _LIBC  localename = __current_locale_name (category);#   else#    if HAVE_NL_LOCALE_NAME  /* NL_LOCALE_NAME is public glibc API introduced in glibc-2.4.  */  localename = nl_langinfo (NL_LOCALE_NAME (category));#    else#     if HAVE_STRUCT___LOCALE_STRUCT___NAMES && defined USE_IN_GETTEXT_TESTS  /* The __names field is not public glibc API and must therefore not be used     in code that is installed in public locations.  */  {    locale_t thread_locale = uselocale (NULL);    if (thread_locale != LC_GLOBAL_LOCALE)      localename = thread_locale->__names[category];    else      localename = "";  }#     endif#    endif#   endif#  endif  search->localename = localename;#  ifdef IN_LIBGLOCALE  search->encoding = encoding;#  endif# endif  /* Since tfind/tsearch manage a balanced tree, concurrent tfind and     tsearch calls can be fatal.  */  gl_rwlock_rdlock (tree_lock);  foundp = (struct known_translation_t **) tfind (search, &root, transcmp);  gl_rwlock_unlock (tree_lock);  freea (search);  if (foundp != NULL && (*foundp)->counter == _nl_msg_cat_cntr)    {      /* Now deal with plural.  */      if (plural)	retval = plural_lookup ((*foundp)->domain, n, (*foundp)->translation,				(*foundp)->translation_length);      else	retval = (char *) (*foundp)->translation;      gl_rwlock_unlock (_nl_state_lock);      return retval;    }#endif  /* Preserve the `errno' value.  */  saved_errno = errno;  /* See whether this is a SUID binary or not.  */  DETERMINE_SECURE;  /* First find matching binding.  */#ifdef IN_LIBGLOCALE  /* We can use a trivial binding, since _nl_find_msg will ignore it anyway,     and _nl_load_domain and _nl_find_domain just pass it through.  */  binding = NULL;  dirname = bindtextdomain (domainname, NULL);#else  for (binding = _nl_domain_bindings; binding != NULL; binding = binding->next)    {      int compare = strcmp (domainname, binding->domainname);      if (compare == 0)	/* We found it!  */	break;      if (compare < 0)	{	  /* It is not in the list.  */	  binding = NULL;	  break;	}    }  if (binding == NULL)    dirname = _nl_default_dirname;  else    {      dirname = binding->dirname;#endif      if (!IS_ABSOLUTE_PATH (dirname))	{	  /* We have a relative path.  Make it absolute now.  */	  size_t dirname_len = strlen (dirname) + 1;	  size_t path_max;	  char *resolved_dirname;	  char *ret;	  path_max = (unsigned int) PATH_MAX;	  path_max += 2;		/* The getcwd docs say to do this.  */	  for (;;)	    {	      resolved_dirname = (char *) alloca (path_max + dirname_len);	      ADD_BLOCK (block_list, tmp_dirname);	      __set_errno (0);	      ret = getcwd (resolved_dirname, path_max);	      if (ret != NULL || errno != ERANGE)		break;	      path_max += path_max / 2;	      path_max += PATH_INCR;	    }	  if (ret == NULL)	    /* We cannot get the current working directory.  Don't signal an	       error but simply return the default string.  */	    goto return_untranslated;	  stpcpy (stpcpy (strchr (resolved_dirname, '\0'), "/"), dirname);	  dirname = resolved_dirname;	}#ifndef IN_LIBGLOCALE    }#endif  /* Now determine the symbolic name of CATEGORY and its value.  */  categoryname = category_to_name (category);#ifdef IN_LIBGLOCALE  categoryvalue = guess_category_value (category, categoryname, localename);#else  categoryvalue = guess_category_value (category, categoryname);#endif  domainname_len = strlen (domainname);  xdomainname = (char *) alloca (strlen (categoryname)				 + domainname_len + 5);  ADD_BLOCK (block_list, xdomainname);  stpcpy (mempcpy (stpcpy (stpcpy (xdomainname, categoryname), "/"),		  domainname, domainname_len),	  ".mo");  /* Creating working area.  */  single_locale = (char *) alloca (strlen (categoryvalue) + 1);  ADD_BLOCK (block_list, single_locale);  /* Search for the given string.  This is a loop because we perhaps     got an ordered list of languages to consider for the translation.  */  while (1)    {      /* Make CATEGORYVALUE point to the next element of the list.  */      while (categoryvalue[0] != '\0' && categoryvalue[0] == ':')	++categoryvalue;      if (categoryvalue[0] == '\0')	{	  /* The whole contents of CATEGORYVALUE has been searched but	     no valid entry has been found.  We solve this situation	     by implicitly appending a "C" entry, i.e. no translation	     will take place.  */	  single_locale[0] = 'C';	  single_locale[1] = '\0';	}      else	{	  char *cp = single_locale;	  while (categoryvalue[0] != '\0' && categoryvalue[0] != ':')	    *cp++ = *categoryvalue++;	  *cp = '\0';	  /* When this is a SUID binary we must not allow accessing files	     outside the dedicated directories.  */	  if (ENABLE_SECURE && IS_PATH_WITH_DIR (single_locale))	    /* Ingore this entry.  */	    continue;	}      /* If the current locale value is C (or POSIX) we don't load a	 domain.  Return the MSGID.  */      if (strcmp (single_locale, "C") == 0	  || strcmp (single_locale, "POSIX") == 0)	break;      /* Find structure describing the message catalog matching the	 DOMAINNAME and CATEGORY.  */      domain = _nl_find_domain (dirname, single_locale, xdomainname, binding);      if (domain != NULL)	{#if defined IN_LIBGLOCALE	  retval = _nl_find_msg (domain, binding, encoding, msgid1, &retlen);#else	  retval = _nl_find_msg (domain, binding, msgid1, 1, &retlen);#endif	  if (retval == NULL)	    {	      int cnt;	      for (cnt = 0; domain->successor[cnt] != NULL; ++cnt)		{#if defined IN_LIBGLOCALE		  retval = _nl_find_msg (domain->successor[cnt], binding,					 encoding, msgid1, &retlen);#else		  retval = _nl_find_msg (domain->successor[cnt], binding,					 msgid1, 1, &retlen);#endif		  if (retval != NULL)		    {		      domain = domain->successor[cnt];		      break;		    }		}	    }	  /* Returning -1 means that some resource problem exists	     (likely memory) and that the strings could not be	     converted.  Return the original strings.  */	  if (__builtin_expect (retval == (char *) -1, 0))	    break;	  if (retval != NULL)	    {	      /* Found the translation of MSGID1 in domain DOMAIN:		 starting at RETVAL, RETLEN bytes.  */	      FREE_BLOCKS (block_list);#if defined HAVE_TSEARCH || defined _LIBC	      if (foundp == NULL)		{		  /* Create a new entry and add it to the search tree.  */		  size_t size;		  struct known_translation_t *newp;		  size = offsetof (struct known_translation_t, msgid)			 + msgid_len + domainname_len + 1;# ifdef HAVE_PER_THREAD_LOCALE		  size += strlen (localename) + 1;# endif		  newp = (struct known_translation_t *) malloc (size);		  if (newp != NULL)		    {		      char *new_domainname;# ifdef HAVE_PER_THREAD_LOCALE		      char *new_localename;# endif		      new_domainname = mempcpy (newp->msgid, msgid1, msgid_len);		      memcpy (new_domainname, domainname, domainname_len + 1);# ifdef HAVE_PER_THREAD_LOCALE		      new_localename = new_domainname + domainname_len + 1;		      strcpy (new_localename, localename);# endif		      newp->domainname = new_domainname;		      newp->category = category;# ifdef HAVE_PER_THREAD_LOCALE		      newp->localename = new_localename;# endif# ifdef IN_LIBGLOCALE		      newp->encoding = encoding;# endif		      newp->counter = _nl_msg_cat_cntr;		      newp->domain = domain;		      newp->translation = retval;		      newp->translation_length = retlen;		      gl_rwlock_wrlock (tree_lock);		      /* Insert the entry in the search tree.  */		      foundp = (struct known_translation_t **)			tsearch (newp, &root, transcmp);		      gl_rwlock_unlock (tree_lock);		      if (foundp == NULL			  || __builtin_expect (*foundp != newp, 0))			/* The insert failed.  */			free (newp);		    }		}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲人成网站色在线观看| 人人狠狠综合久久亚洲| 国产成人午夜高潮毛片| 欧美人妖巨大在线| 一区二区三区影院| 欧美日韩免费视频| 性久久久久久久久久久久| 91麻豆免费看片| 午夜久久电影网| 欧美日韩亚洲综合一区二区三区| 国产欧美精品区一区二区三区| 国产精品自拍毛片| 久久综合久久综合久久综合| 国产二区国产一区在线观看| 国产免费成人在线视频| 丰满白嫩尤物一区二区| 亚洲区小说区图片区qvod| 91网站在线观看视频| 亚洲人精品一区| 欧美一级搡bbbb搡bbbb| 久久99精品久久只有精品| 久久女同互慰一区二区三区| 国产伦理精品不卡| 国产欧美日本一区二区三区| 在线精品视频免费播放| 日韩精品一区第一页| 日韩午夜激情电影| 波多野结衣91| 亚洲国产一区视频| 成人高清免费观看| 亚洲五码中文字幕| 日韩一区二区在线观看视频播放| 国产电影一区在线| 亚洲男人电影天堂| 91精品国产欧美一区二区成人| 国产精品自拍在线| 亚洲欧美色一区| 在线欧美日韩国产| 精品伊人久久久久7777人| 久久久久久一级片| 欧美日韩在线不卡| 国产成人精品一区二区三区四区| 中文字幕二三区不卡| 日韩一区二区免费在线观看| 国产精品69久久久久水密桃| 亚洲人成网站影音先锋播放| 欧美日韩电影在线| 国产91综合一区在线观看| 亚洲激情图片小说视频| 欧美v日韩v国产v| 91在线小视频| 国产精品羞羞答答xxdd| 国产精品久久久久久久久图文区| 欧美亚一区二区| 国产91精品在线观看| 亚洲成人精品在线观看| 精品国产免费一区二区三区四区| kk眼镜猥琐国模调教系列一区二区| 日韩激情在线观看| 亚洲丝袜制服诱惑| 日韩一区二区三区电影在线观看 | 亚洲男人天堂一区| 97se狠狠狠综合亚洲狠狠| 国产一区二区三区av电影| 亚洲一二三专区| 亚洲美女屁股眼交3| 亚洲精品在线观看网站| 91行情网站电视在线观看高清版| 成人免费va视频| 激情久久五月天| 奇米色一区二区| 亚洲国产一区二区视频| 国产精品人人做人人爽人人添| 久久九九全国免费| 日韩免费福利电影在线观看| 91久久线看在观草草青青| 国产激情视频一区二区在线观看| 日韩二区三区四区| 综合色中文字幕| 中文幕一区二区三区久久蜜桃| 日韩欧美不卡在线观看视频| 欧美在线观看一二区| 激情图片小说一区| 美女在线一区二区| 亚洲丝袜美腿综合| 国产精品人成在线观看免费| 日韩欧美综合一区| 337p亚洲精品色噜噜噜| 东方aⅴ免费观看久久av| 大胆亚洲人体视频| 成人精品亚洲人成在线| 91色porny| 99国产精品久久久久久久久久久| 国产成人免费9x9x人网站视频| 久久国产尿小便嘘嘘| 日韩精品福利网| 国产美女主播视频一区| 精品一二线国产| 国产成人精品免费一区二区| 国产福利不卡视频| 风流少妇一区二区| 91蜜桃免费观看视频| 97国产一区二区| 欧美丰满高潮xxxx喷水动漫| 欧美视频在线不卡| 99re66热这里只有精品3直播 | 一区二区在线看| 亚洲国产视频一区二区| 亚洲国产cao| 久久99久久99小草精品免视看| 日本欧美一区二区| 国产91精品一区二区麻豆亚洲| 蜜桃精品视频在线| 国产suv精品一区二区6| 99久久免费精品高清特色大片| 欧美四级电影网| 欧美电视剧在线看免费| 国产精品高潮久久久久无| 亚洲欧美日韩系列| 日韩精品三区四区| 日韩经典一区二区| 精久久久久久久久久久| 91小视频在线观看| 欧美日韩大陆一区二区| 国产日韩三级在线| 一区二区三区影院| 日本欧美大码aⅴ在线播放| 美女任你摸久久| 国产91富婆露脸刺激对白| 欧美另类一区二区三区| 精品理论电影在线观看| 日韩欧美国产1| 亚洲午夜一区二区三区| 国产综合色视频| 欧美日韩精品一区视频| 久久精品一区蜜桃臀影院| 午夜久久久久久久久久一区二区| 韩国欧美一区二区| 色综合天天天天做夜夜夜夜做| 欧美成人a∨高清免费观看| 一区在线播放视频| 国产精品18久久久久| 在线免费观看不卡av| 国产欧美日本一区视频| 亚洲午夜久久久久久久久电影院| 麻豆成人91精品二区三区| 在线亚洲精品福利网址导航| 日韩欧美精品三级| 亚洲精品一卡二卡| 国产一区在线不卡| 欧美撒尿777hd撒尿| 亚洲欧洲日韩在线| 韩国欧美国产一区| 欧美一级高清片在线观看| 亚洲精品国产成人久久av盗摄 | 亚洲视频免费在线观看| 免费不卡在线视频| 在线综合+亚洲+欧美中文字幕| 国产日韩高清在线| 午夜不卡在线视频| 欧美另类变人与禽xxxxx| 国产精品初高中害羞小美女文| 国产一区三区三区| 91麻豆精品国产| 亚洲va欧美va人人爽午夜 | 成人免费一区二区三区视频| 国产黄色91视频| 日韩视频免费观看高清完整版在线观看| 91精品国产综合久久精品| 亚洲电影欧美电影有声小说| www.久久精品| 亚洲欧美色图小说| caoporm超碰国产精品| 欧美激情中文不卡| 国内精品写真在线观看| 久久久噜噜噜久久中文字幕色伊伊| 日韩在线一二三区| 欧美老肥妇做.爰bbww| 男女男精品视频| 欧美猛男男办公室激情| 久久99精品久久只有精品| 制服丝袜一区二区三区| 黑人巨大精品欧美黑白配亚洲| 欧美一区二区三区四区五区| 日韩精品一区第一页| 5858s免费视频成人| 日本一区二区三区免费乱视频| 懂色一区二区三区免费观看| 久久久www成人免费无遮挡大片| 成人一级黄色片| 国产亚洲精品资源在线26u| proumb性欧美在线观看| 一区在线中文字幕| 欧美日韩亚洲综合在线| 午夜电影网一区| 国产亚洲成年网址在线观看| 成人一区二区在线观看| 欧美日本国产一区| 国产精品一色哟哟哟| 中文无字幕一区二区三区 |