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

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

?? bindtextdom.c

?? linux下的串口工具
?? C
字號(hào):
/* Implementation of the bindtextdomain(3) function   Copyright (C) 1995-1998, 2000, 2001, 2002 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 libintl_nl_default_dirname# define _nl_domain_bindings libintl_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 attribute_hidden)/* 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 libintl_bindtextdomain# define BIND_TEXTDOMAIN_CODESET libintl_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

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品乱码久久久久久日本蜜臀| 成人免费一区二区三区在线观看| 国产精品一区不卡| 亚洲视频狠狠干| 日韩视频永久免费| 91女人视频在线观看| 精品影院一区二区久久久| 亚洲欧美日韩中文播放| 欧美精品一区二区三区一线天视频| 91亚洲精品一区二区乱码| 精品在线一区二区三区| 亚洲福利电影网| 国产精品久久影院| 久久色.com| 宅男在线国产精品| 色狠狠综合天天综合综合| 国产成人小视频| 麻豆精品在线看| 午夜欧美一区二区三区在线播放| 国产精品毛片a∨一区二区三区| 884aa四虎影成人精品一区| 一本一本大道香蕉久在线精品| 国产在线视频精品一区| 天天色综合成人网| 亚洲一区二区三区在线看| 国产精品久久久99| 久久久精品2019中文字幕之3| 6080yy午夜一二三区久久| 一本色道久久综合狠狠躁的推荐| 国产大陆精品国产| 国模一区二区三区白浆| 日本视频在线一区| 日韩中文字幕av电影| 亚洲福利视频一区二区| 一区二区三区精品| 亚洲日穴在线视频| 国产精品久久久久久久久免费桃花 | 欧美激情综合网| 精品福利一区二区三区免费视频| 欧美一区二区三区日韩视频| 欧美日韩精品一区二区三区四区| 在线视频一区二区免费| 色老头久久综合| 91福利国产精品| 色狠狠综合天天综合综合| 日本精品视频一区二区| 色婷婷综合久久久中文字幕| 一本色道久久加勒比精品| 色偷偷久久一区二区三区| 色综合久久久久久久久| 色噜噜夜夜夜综合网| 一本色道久久综合精品竹菊| 91福利视频久久久久| 精品视频色一区| 日韩一区二区在线观看视频| 日韩欧美国产一二三区| 日韩欧美卡一卡二| 久久久久99精品一区| 中文字幕欧美日韩一区| 国产精品夫妻自拍| 亚洲激情男女视频| 青青草成人在线观看| 激情国产一区二区 | 国产一区二区三区免费| 高清av一区二区| 91美女片黄在线观看91美女| 欧美日韩在线观看一区二区| 欧美日韩成人综合| 2022国产精品视频| 国产精品理论片在线观看| 亚洲精品视频免费看| 五月婷婷激情综合| 九九国产精品视频| www.亚洲色图| 欧美日本一区二区在线观看| 欧美videossexotv100| 久久精品这里都是精品| 亚洲免费av网站| 蜜桃视频在线观看一区| 不卡的av电影| 欧美精品久久久久久久久老牛影院| 精品国产乱码久久久久久久| 亚洲欧洲三级电影| 美腿丝袜一区二区三区| av一区二区不卡| 91精品欧美综合在线观看最新| 久久亚洲私人国产精品va媚药| 亚洲免费观看高清在线观看| 日本欧美大码aⅴ在线播放| 成人晚上爱看视频| 在线成人av影院| 中文字幕国产一区| 日韩中文字幕区一区有砖一区 | 日韩高清在线电影| 成人高清免费观看| 欧美变态tickling挠脚心| 亚洲麻豆国产自偷在线| 精品一区二区三区久久| 欧美在线|欧美| 国产亚洲欧美一区在线观看| 亚洲线精品一区二区三区| 国产999精品久久| 日韩手机在线导航| 亚洲国产一区二区三区| 成人免费va视频| 日韩免费一区二区| 婷婷开心久久网| 99精品视频免费在线观看| 精品成人免费观看| 午夜视黄欧洲亚洲| 在线观看一区不卡| 亚洲欧洲三级电影| 国产美女视频一区| 日韩一二三区不卡| 天堂在线一区二区| 欧美午夜不卡视频| 亚洲美女视频在线观看| 成人18精品视频| 久久久久国产一区二区三区四区| 日本特黄久久久高潮| 欧美视频一区二区在线观看| 中文字幕一区日韩精品欧美| 国产精品一区二区男女羞羞无遮挡| 欧美一级电影网站| 亚洲成a人v欧美综合天堂下载 | 狠狠色丁香九九婷婷综合五月| 欧美日韩性生活| 一片黄亚洲嫩模| 色嗨嗨av一区二区三区| 一区精品在线播放| 91丨九色丨蝌蚪丨老版| 中文字幕在线一区| 99久久免费精品| 亚洲欧洲性图库| 97精品电影院| 亚洲私人影院在线观看| 91免费视频网| 亚洲精品第1页| 欧美在线|欧美| 亚洲大片免费看| 欧美高清www午色夜在线视频| 亚洲国产三级在线| 91精品国产综合久久福利软件| 午夜亚洲福利老司机| 8x福利精品第一导航| 青青草91视频| 精品国产污污免费网站入口| 国产在线看一区| 国产日韩在线不卡| 91在线小视频| 亚洲一区免费视频| 7777精品伊人久久久大香线蕉的 | 亚洲品质自拍视频| 色天天综合久久久久综合片| 有坂深雪av一区二区精品| 欧美在线免费观看亚洲| 日韩成人免费电影| 2欧美一区二区三区在线观看视频| 国产在线精品一区二区不卡了| 久久免费视频色| 国产91丝袜在线播放九色| 中文字幕一区二区在线播放| 欧洲视频一区二区| 日本不卡一区二区| 久久久精品欧美丰满| 91美女在线观看| 日韩经典中文字幕一区| 久久久国产午夜精品| 99久久综合精品| 性欧美大战久久久久久久久| 日韩欧美高清在线| jlzzjlzz国产精品久久| 亚洲va天堂va国产va久| 日韩女优av电影| 99re6这里只有精品视频在线观看| 亚洲午夜久久久久久久久电影院| 日韩无一区二区| 99re这里只有精品首页| 日韩成人免费电影| 日本一区二区成人在线| 欧美日韩亚洲丝袜制服| 国产精品99久| 亚洲成av人影院在线观看网| 久久久亚洲欧洲日产国码αv| 一本久道中文字幕精品亚洲嫩| 日本不卡一二三| 综合在线观看色| 日韩欧美激情四射| 一本到不卡精品视频在线观看| 欧美a级理论片| 亚洲日本电影在线| 26uuu精品一区二区三区四区在线 26uuu精品一区二区在线观看 | 日本欧美一区二区三区| 国产精品天天看| 欧美一区二区三区在线观看| av动漫一区二区| 极品少妇xxxx偷拍精品少妇| 一区二区高清在线| 国产精品入口麻豆九色| 日韩免费高清av|