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

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

?? bindtextdom.c

?? 一個windows上的加解密程式 提供方便的介面讓使用者操作
?? C
字號:
/* Implementation of the bindtextdomain(3) function   Copyright (C) 1995-1998, 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.  */#ifdef HAVE_CONFIG_H# include <config.h>#endif#include <stddef.h>#include <stdlib.h>#include <string.h>#ifdef _LIBC# include <libintl.h>#else# include "libgnuintl.h"#endif#include "gettextP.h"#ifdef _LIBC/* We have to handle multi-threaded applications.  */# include <bits/libc-lock.h>#else/* Provide dummy implementation if this is outside glibc.  */# define __libc_rwlock_define(CLASS, NAME)# define __libc_rwlock_wrlock(NAME)# define __libc_rwlock_unlock(NAME)#endif/* The internal variables in the standalone libintl.a must have different   names than the internal variables in GNU libc, otherwise programs   using libintl.a cannot be linked statically.  */#if !defined _LIBC# define _nl_default_dirname _nl_default_dirname__# define _nl_domain_bindings _nl_domain_bindings__#endif/* Some compilers, like SunOS4 cc, don't have offsetof in <stddef.h>.  */#ifndef offsetof# define offsetof(type,ident) ((size_t)&(((type*)0)->ident))#endif/* @@ end of prolog @@ *//* Contains the default location of the message catalogs.  */extern const char _nl_default_dirname[];/* List with bindings of specific domains.  */extern struct binding *_nl_domain_bindings;/* Lock variable to protect the global data in the gettext implementation.  */__libc_rwlock_define (extern, _nl_state_lock)/* 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 BINDTEXTDOMAIN __bindtextdomain# define BIND_TEXTDOMAIN_CODESET __bind_textdomain_codeset# ifndef strdup#  define strdup(str) __strdup (str)# endif#else# define BINDTEXTDOMAIN bindtextdomain__# define BIND_TEXTDOMAIN_CODESET bind_textdomain_codeset__#endif/* Prototypes for local functions.  */static void set_binding_values PARAMS ((const char *domainname,					const char **dirnamep,					const char **codesetp));     /* Specifies the directory name *DIRNAMEP and the output codeset *CODESETP   to be used for the DOMAINNAME message catalog.   If *DIRNAMEP or *CODESETP is NULL, the corresponding attribute is not   modified, only the current value is returned.   If DIRNAMEP or CODESETP is NULL, the corresponding attribute is neither   modified nor returned.  */static voidset_binding_values (domainname, dirnamep, codesetp)     const char *domainname;     const char **dirnamep;     const char **codesetp;{  struct binding *binding;  int modified;  /* Some sanity checks.  */  if (domainname == NULL || domainname[0] == '\0')    {      if (dirnamep)	*dirnamep = NULL;      if (codesetp)	*codesetp = NULL;      return;    }  __libc_rwlock_wrlock (_nl_state_lock);  modified = 0;  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)    {      if (dirnamep)	{	  const char *dirname = *dirnamep;	  if (dirname == NULL)	    /* The current binding has be to returned.  */	    *dirnamep = binding->dirname;	  else	    {	      /* The domain is already bound.  If the new value and the old		 one are equal we simply do nothing.  Otherwise replace the		 old binding.  */	      char *result = binding->dirname;	      if (strcmp (dirname, result) != 0)		{		  if (strcmp (dirname, _nl_default_dirname) == 0)		    result = (char *) _nl_default_dirname;		  else		    {#if defined _LIBC || defined HAVE_STRDUP		      result = strdup (dirname);#else		      size_t len = strlen (dirname) + 1;		      result = (char *) malloc (len);		      if (__builtin_expect (result != NULL, 1))			memcpy (result, dirname, len);#endif		    }		  if (__builtin_expect (result != NULL, 1))		    {		      if (binding->dirname != _nl_default_dirname)			free (binding->dirname);		      binding->dirname = result;		      modified = 1;		    }		}	      *dirnamep = result;	    }	}      if (codesetp)	{	  const char *codeset = *codesetp;	  if (codeset == NULL)	    /* The current binding has be to returned.  */	    *codesetp = binding->codeset;	  else	    {	      /* The domain is already bound.  If the new value and the old		 one are equal we simply do nothing.  Otherwise replace the		 old binding.  */	      char *result = binding->codeset;	      if (result == NULL || strcmp (codeset, result) != 0)		{#if defined _LIBC || defined HAVE_STRDUP		  result = strdup (codeset);#else		  size_t len = strlen (codeset) + 1;		  result = (char *) malloc (len);		  if (__builtin_expect (result != NULL, 1))		    memcpy (result, codeset, len);#endif		  if (__builtin_expect (result != NULL, 1))		    {		      if (binding->codeset != NULL)			free (binding->codeset);		      binding->codeset = result;		      binding->codeset_cntr++;		      modified = 1;		    }		}	      *codesetp = result;	    }	}    }  else if ((dirnamep == NULL || *dirnamep == NULL)	   && (codesetp == NULL || *codesetp == NULL))    {      /* Simply return the default values.  */      if (dirnamep)	*dirnamep = _nl_default_dirname;      if (codesetp)	*codesetp = NULL;    }  else    {      /* We have to create a new binding.  */      size_t len = strlen (domainname) + 1;      struct binding *new_binding =	(struct binding *) malloc (offsetof (struct binding, domainname) + len);      if (__builtin_expect (new_binding == NULL, 0))	goto failed;      memcpy (new_binding->domainname, domainname, len);      if (dirnamep)	{	  const char *dirname = *dirnamep;	  if (dirname == NULL)	    /* The default value.  */	    dirname = _nl_default_dirname;	  else	    {	      if (strcmp (dirname, _nl_default_dirname) == 0)		dirname = _nl_default_dirname;	      else		{		  char *result;#if defined _LIBC || defined HAVE_STRDUP		  result = strdup (dirname);		  if (__builtin_expect (result == NULL, 0))		    goto failed_dirname;#else		  size_t len = strlen (dirname) + 1;		  result = (char *) malloc (len);		  if (__builtin_expect (result == NULL, 0))		    goto failed_dirname;		  memcpy (result, dirname, len);#endif		  dirname = result;		}	    }	  *dirnamep = dirname;	  new_binding->dirname = (char *) dirname;	}      else	/* The default value.  */	new_binding->dirname = (char *) _nl_default_dirname;      new_binding->codeset_cntr = 0;      if (codesetp)	{	  const char *codeset = *codesetp;	  if (codeset != NULL)	    {	      char *result;#if defined _LIBC || defined HAVE_STRDUP	      result = strdup (codeset);	      if (__builtin_expect (result == NULL, 0))		goto failed_codeset;#else	      size_t len = strlen (codeset) + 1;	      result = (char *) malloc (len);	      if (__builtin_expect (result == NULL, 0))		goto failed_codeset;	      memcpy (result, codeset, len);#endif	      codeset = result;	      new_binding->codeset_cntr++;	    }	  *codesetp = codeset;	  new_binding->codeset = (char *) codeset;	}      else	new_binding->codeset = NULL;      /* Now enqueue it.  */      if (_nl_domain_bindings == NULL	  || strcmp (domainname, _nl_domain_bindings->domainname) < 0)	{	  new_binding->next = _nl_domain_bindings;	  _nl_domain_bindings = new_binding;	}      else	{	  binding = _nl_domain_bindings;	  while (binding->next != NULL		 && strcmp (domainname, binding->next->domainname) > 0)	    binding = binding->next;	  new_binding->next = binding->next;	  binding->next = new_binding;	}      modified = 1;      /* Here we deal with memory allocation failures.  */      if (0)	{	failed_codeset:	  if (new_binding->dirname != _nl_default_dirname)	    free (new_binding->dirname);	failed_dirname:	  free (new_binding);	failed:	  if (dirnamep)	    *dirnamep = NULL;	  if (codesetp)	    *codesetp = NULL;	}    }  /* If we modified any binding, we flush the caches.  */  if (modified)    ++_nl_msg_cat_cntr;  __libc_rwlock_unlock (_nl_state_lock);}/* Specify that the DOMAINNAME message catalog will be found   in DIRNAME rather than in the system locale data base.  */char *BINDTEXTDOMAIN (domainname, dirname)     const char *domainname;     const char *dirname;{  set_binding_values (domainname, &dirname, NULL);  return (char *) dirname;}/* Specify the character encoding in which the messages from the   DOMAINNAME message catalog will be returned.  */char *BIND_TEXTDOMAIN_CODESET (domainname, codeset)     const char *domainname;     const char *codeset;{  set_binding_values (domainname, NULL, &codeset);  return (char *) codeset;}#ifdef _LIBC/* Aliases for function names in GNU C Library.  */weak_alias (__bindtextdomain, bindtextdomain);weak_alias (__bind_textdomain_codeset, bind_textdomain_codeset);#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
天天综合日日夜夜精品| 日韩一区二区在线观看视频| 精品国产一区二区在线观看| 亚洲超碰97人人做人人爱| 99久久精品免费看国产 | 亚洲精品欧美二区三区中文字幕| 蜜桃视频一区二区三区在线观看| 在线观看亚洲a| 亚洲成人精品影院| 欧美老肥妇做.爰bbww| 一区二区三区波多野结衣在线观看| 91免费观看在线| 亚洲小说欧美激情另类| 欧美精品第一页| 亚洲一区二区精品视频| 欧美精品亚洲一区二区在线播放| 蜜桃久久av一区| 国产欧美精品一区二区三区四区| 91一区二区在线| 五月婷婷激情综合| www久久久久| 97精品久久久久中文字幕 | 国产精品欧美久久久久无广告| 高清久久久久久| 亚洲高清一区二区三区| 久久夜色精品国产噜噜av| 国产在线视视频有精品| 国产精品青草久久| 日韩免费一区二区三区在线播放| 成人短视频下载| 久久99这里只有精品| 欧美成人猛片aaaaaaa| 欧美日韩三级在线| 成人不卡免费av| 国产精品12区| 国模套图日韩精品一区二区| 亚洲mv大片欧洲mv大片精品| 国产精品美女久久久久高潮| 欧美成人r级一区二区三区| 欧美在线观看一二区| 风间由美性色一区二区三区| 三级在线观看一区二区| 亚洲成人动漫精品| 日日摸夜夜添夜夜添亚洲女人| 在线观看网站黄不卡| 99视频国产精品| 91视频国产资源| 欧洲亚洲国产日韩| 欧美久久久久久久久中文字幕| 91黄视频在线| 欧美日韩在线播放三区| 成人免费视频免费观看| 国产在线国偷精品产拍免费yy| 91麻豆精品国产自产在线| 99麻豆久久久国产精品免费| 高清shemale亚洲人妖| 99国产欧美久久久精品| 欧美性一二三区| 精品国产91久久久久久久妲己 | 欧美久久高跟鞋激| 久久一夜天堂av一区二区三区| 精品福利二区三区| 亚洲美女淫视频| 亚洲欧美日韩国产综合| 日韩理论在线观看| 五月天一区二区| 91在线视频官网| 在线播放中文字幕一区| 亚洲视频一区在线观看| 美女视频黄 久久| 国产黄色精品网站| 欧美人牲a欧美精品| 国产免费成人在线视频| 日韩精品1区2区3区| 日本韩国一区二区| 日本一区二区不卡视频| 免费看欧美女人艹b| 91麻豆123| 亚洲欧美一区二区在线观看| 国产精品亚洲一区二区三区在线| 色妞www精品视频| 亚洲欧洲99久久| 色爱区综合激月婷婷| 国产精品久久久久精k8| 高清国产一区二区| 国产精品女主播在线观看| 国产成人精品三级| 日本一区二区三区久久久久久久久不 | 轻轻草成人在线| 欧美三级视频在线| 日本亚洲电影天堂| 精品欧美一区二区在线观看| 国内精品写真在线观看| 国产亚洲人成网站| 色综合天天狠狠| 亚洲中国最大av网站| 99vv1com这只有精品| 亚洲综合在线免费观看| 欧美视频你懂的| 国产精品夜夜嗨| 亚洲最大的成人av| 26uuu国产一区二区三区| aaa欧美大片| 日韩精品电影一区亚洲| 日韩欧美一级片| 一本色道**综合亚洲精品蜜桃冫| 国产精品欧美一区喷水| 91精品欧美一区二区三区综合在 | 日韩欧美中文一区二区| 成人av免费网站| 麻豆国产精品一区二区三区 | 亚洲国产美国国产综合一区二区| 欧美一卡二卡三卡四卡| 色综合久久88色综合天天免费| 日韩中文欧美在线| 樱桃视频在线观看一区| wwww国产精品欧美| 日韩一区二区三区电影| 日韩手机在线导航| 久久久国产精品午夜一区ai换脸| 精品日韩一区二区三区| 国产欧美视频一区二区三区| 26uuu亚洲综合色| 中文字幕亚洲一区二区av在线| 中文字幕不卡的av| 亚洲国产成人av网| 蜜臀av在线播放一区二区三区| 国内精品视频一区二区三区八戒 | 国产在线精品一区二区夜色| 久久99精品久久只有精品| 国产精品一区二区你懂的| 日韩精品在线网站| 91最新地址在线播放| 91国偷自产一区二区三区观看| 欧美写真视频网站| 久久亚洲一区二区三区明星换脸| 日本一区二区三区在线不卡| ㊣最新国产の精品bt伙计久久| 午夜精品久久久久久久久久久| 激情综合色播激情啊| 欧美中文字幕一区二区三区| 久久尤物电影视频在线观看| 亚洲乱码国产乱码精品精98午夜| 奇米影视一区二区三区| 色综合视频一区二区三区高清| 日韩三区在线观看| 亚洲综合区在线| 成人av资源下载| 久久综合九色综合97婷婷女人| 亚洲一二三四久久| 91麻豆国产福利在线观看| 亚洲r级在线视频| kk眼镜猥琐国模调教系列一区二区 | 99热在这里有精品免费| 亚洲欧洲精品天堂一级| 国产a视频精品免费观看| 久久精品一区二区三区av| 老色鬼精品视频在线观看播放| 欧美精品v日韩精品v韩国精品v| 亚洲精品成人a在线观看| av午夜一区麻豆| 一级日本不卡的影视| 欧美精品第1页| 精品亚洲免费视频| 久久综合狠狠综合久久综合88 | 日韩精品成人一区二区三区 | 欧美日韩在线不卡| 日韩av高清在线观看| 欧美大尺度电影在线| 国产精品中文欧美| 亚洲免费av观看| 日韩久久免费av| 91在线视频免费91| 亚洲成人动漫在线免费观看| 日韩一区二区三区在线| 成人性生交大片免费看中文 | 欧美大肚乱孕交hd孕妇| 成人午夜视频福利| 日本怡春院一区二区| 国产色产综合色产在线视频| 91官网在线观看| 岛国一区二区三区| 日韩国产精品久久久久久亚洲| 精品成人佐山爱一区二区| 欧美在线观看一区二区| 国产一区不卡在线| 欧美a一区二区| 一区二区三区高清| 综合久久久久久久| 国产欧美日韩一区二区三区在线观看| 欧美男生操女生| 在线观看免费亚洲| 国产成人av电影在线观看| 天天操天天综合网| 亚洲一区二区在线免费观看视频| 亚洲国产精品激情在线观看| 久久中文娱乐网| 久久久久久久久99精品| 久久综合久久99| 中文字幕精品在线不卡|