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

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

?? bindtextdom.c

?? minicom 源碼
?? 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一区二区三区免费野_久草精品视频
国产精品理论在线观看| 天天影视色香欲综合网老头| 亚洲欧美国产高清| 午夜激情一区二区三区| 一本大道久久精品懂色aⅴ| 色婷婷综合五月| 精品电影一区二区三区| 亚洲一区在线观看网站| 成人中文字幕在线| 日韩美一区二区三区| 一级中文字幕一区二区| 国产99一区视频免费 | 一区二区三区电影在线播| 久久成人免费网站| 欧美视频一区在线观看| 中文字幕的久久| 国产一区二三区| 欧美一区二区三区公司| 亚洲综合色视频| 91精彩视频在线观看| 日本一区二区免费在线| 国产精品一区二区久激情瑜伽| 欧美一卡2卡三卡4卡5免费| 亚洲一区在线观看视频| 在线观看日韩一区| 综合久久综合久久| av一区二区三区| 亚洲欧洲精品一区二区精品久久久| 韩国毛片一区二区三区| 欧美xxxxxxxx| 精品制服美女久久| 精品少妇一区二区| 久久se精品一区精品二区| 日韩精品最新网址| 久久国产剧场电影| 久久精品亚洲一区二区三区浴池| 国产在线精品一区二区 | 91国产免费看| 亚洲伊人伊色伊影伊综合网| 色婷婷av一区二区三区之一色屋| 中文字幕在线不卡一区二区三区| av午夜精品一区二区三区| 亚洲色图一区二区| 91精彩视频在线观看| 国产一区二区三区免费看| 久久久久国产精品人| 国产凹凸在线观看一区二区| 国产精品色呦呦| 色偷偷久久一区二区三区| 一区二区三区四区高清精品免费观看| 欧美怡红院视频| 免费观看在线综合| 国产欧美一区二区三区鸳鸯浴| 国产69精品久久久久毛片| 亚洲天堂福利av| 欧美日产在线观看| 国产美女在线观看一区| 亚洲日本成人在线观看| 在线不卡的av| 国产麻豆成人传媒免费观看| 一色屋精品亚洲香蕉网站| 欧美午夜精品免费| 国产麻豆精品95视频| 一卡二卡欧美日韩| 精品国产3级a| 一本色道久久综合狠狠躁的推荐| 奇米精品一区二区三区在线观看| 国产欧美精品国产国产专区 | 91精品国产色综合久久不卡蜜臀| 寂寞少妇一区二区三区| 国产精品你懂的在线| 欧美三级在线看| 国产精品综合二区| 亚洲一区二区三区四区在线免费观看 | 日韩一级免费一区| 成人网页在线观看| 天堂va蜜桃一区二区三区| 久久精品男人天堂av| 欧美亚洲动漫制服丝袜| 国内外成人在线视频| 香港成人在线视频| 中文字幕欧美国产| 欧美一区二区三区在线电影| 91伊人久久大香线蕉| 国产一区二区h| 亚洲第一电影网| 亚洲欧洲在线观看av| 日韩午夜在线影院| 色噜噜狠狠色综合欧洲selulu| 久88久久88久久久| 亚洲大片精品永久免费| 一区在线播放视频| 久久伊人蜜桃av一区二区| 欧美精品丝袜久久久中文字幕| 91蜜桃免费观看视频| 国产一区二区美女| 久88久久88久久久| 日韩vs国产vs欧美| 亚洲国产精品一区二区尤物区| 中文字幕一区二区在线播放| 国产亚洲一本大道中文在线| 日韩免费一区二区| 91精品国产色综合久久ai换脸| 在线观看三级视频欧美| 91在线丨porny丨国产| 成人午夜av电影| 成人av资源站| 99视频精品免费视频| 99国产精品一区| 99精品在线免费| 99久久精品国产麻豆演员表| 国产91精品一区二区| 国产一区高清在线| 国产一区二区电影| 国产成人精品亚洲日本在线桃色| 精品一区二区三区在线视频| 久久精品理论片| 国产一区在线不卡| 国产成人免费视频一区| 国产91色综合久久免费分享| 国产精品亚洲专一区二区三区 | 成人成人成人在线视频| 国产大陆a不卡| 高清在线不卡av| 成人毛片在线观看| 99久久久久免费精品国产 | 56国语精品自产拍在线观看| 欧美理论片在线| 欧美福利视频导航| 精品国产免费视频| 国产午夜精品一区二区三区视频| 国产精品乱码一区二区三区软件 | 欧美性videosxxxxx| 欧美三级日本三级少妇99| 欧美二区在线观看| 精品国产免费久久| 成人欧美一区二区三区白人| 一区二区三区 在线观看视频| 天天综合天天做天天综合| 蜜臂av日日欢夜夜爽一区| 国产白丝网站精品污在线入口| 91福利在线观看| 日韩免费福利电影在线观看| 国产精品毛片久久久久久| 亚洲国产一区二区视频| 精品综合久久久久久8888| 成人一区二区三区中文字幕| 色婷婷激情一区二区三区| 91精品国产手机| 中文字幕+乱码+中文字幕一区| 亚洲自拍都市欧美小说| 国产一区二区三区不卡在线观看| 一本色道综合亚洲| 精品久久人人做人人爰| 中文字幕在线不卡国产视频| 美国毛片一区二区三区| aaa亚洲精品| 日韩免费看的电影| 亚洲欧美另类久久久精品| 免费成人在线观看| 在线亚洲一区观看| 久久久久久久久久久电影| 亚洲电影激情视频网站| 国产精品中文字幕日韩精品| 欧美伊人精品成人久久综合97 | 成人久久视频在线观看| 欧美精选在线播放| 中文av一区二区| 久久国产三级精品| 欧美日韩一级片在线观看| 国产欧美精品一区aⅴ影院| 日本不卡中文字幕| 91福利在线看| 综合分类小说区另类春色亚洲小说欧美 | 日韩美女视频一区二区| 国产在线乱码一区二区三区| 欧美日韩久久一区二区| 亚洲日本va午夜在线电影| 成人综合婷婷国产精品久久免费| 欧美一级理论性理论a| 亚洲一区二区三区自拍| 99九九99九九九视频精品| 日本一区二区不卡视频| 美日韩黄色大片| 欧美一级一区二区| 亚洲123区在线观看| 色狠狠av一区二区三区| 中文字幕日韩精品一区| 不卡的看片网站| 国产视频一区不卡| 国产乱国产乱300精品| 精品区一区二区| 久国产精品韩国三级视频| 91精品国产aⅴ一区二区| 视频一区欧美日韩| 欧美日韩精品欧美日韩精品一| 亚洲va国产va欧美va观看| 欧美日韩国产一区二区三区地区| 亚洲美女区一区| 在线亚洲一区二区|