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

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

?? loadmsgcat.c

?? linux 下的超級終端 minicom
?? C
字號:
/* Load needed message catalogs.   Copyright (C) 1995-1999, 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.  *//* Tell glibc's <string.h> to provide a prototype for mempcpy().   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 <ctype.h>#include <errno.h>#include <fcntl.h>#include <sys/types.h>#include <sys/stat.h>#ifdef __GNUC__# define alloca __builtin_alloca# define HAVE_ALLOCA 1#else# if defined HAVE_ALLOCA_H || defined _LIBC#  include <alloca.h># else#  ifdef _AIX #pragma alloca#  else#   ifndef allocachar *alloca ();#   endif#  endif# endif#endif#include <stdlib.h>#include <string.h>#if defined HAVE_UNISTD_H || defined _LIBC# include <unistd.h>#endif#ifdef _LIBC# include <langinfo.h># include <locale.h>#endif#if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \    || (defined _LIBC && defined _POSIX_MAPPED_FILES)# include <sys/mman.h># undef HAVE_MMAP# define HAVE_MMAP	1#else# undef HAVE_MMAP#endif#include "gettext.h"#include "gettextP.h"#ifdef _LIBC# include "../locale/localeinfo.h"#endif/* @@ end of prolog @@ */#ifdef _LIBC/* Rename the non ISO C functions.  This is required by the standard   because some ISO C functions will require linking with this object   file and the name space must not be polluted.  */# define open   __open# define close  __close# define read   __read# define mmap   __mmap# define munmap __munmap#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 PLURAL_PARSE __gettextparse#else# define PLURAL_PARSE gettextparse__#endif/* For those losing systems which don't have `alloca' we have to add   some additional code emulating it.  */#ifdef HAVE_ALLOCA# define freea(p) /* nothing */#else# define alloca(n) malloc (n)# define freea(p) free (p)#endif/* For systems that distinguish between text and binary I/O.   O_BINARY is usually declared in <fcntl.h>. */#if !defined O_BINARY && defined _O_BINARY  /* For MSC-compatible compilers.  */# define O_BINARY _O_BINARY# define O_TEXT _O_TEXT#endif#ifdef __BEOS__  /* BeOS 5 has O_BINARY and O_TEXT, but they have no effect.  */# undef O_BINARY# undef O_TEXT#endif/* On reasonable systems, binary I/O is the default.  */#ifndef O_BINARY# define O_BINARY 0#endif/* We need a sign, whether a new catalog was loaded, which can be associated   with all translations.  This is important if the translations are   cached by one of GCC's features.  */int _nl_msg_cat_cntr;#if (defined __GNUC__ && !defined __APPLE_CC__) \    || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L)/* These structs are the constant expression for the germanic plural   form determination.  It represents the expression  "n != 1".  */static const struct expression plvar ={  .nargs = 0,  .operation = var,};static const struct expression plone ={  .nargs = 0,  .operation = num,  .val =  {    .num = 1  }};static struct expression germanic_plural ={  .nargs = 2,  .operation = not_equal,  .val =  {    .args =    {      [0] = (struct expression *) &plvar,      [1] = (struct expression *) &plone    }  }};# define INIT_GERMANIC_PLURAL()#else/* For compilers without support for ISO C 99 struct/union initializers:   Initialization at run-time.  */static struct expression plvar;static struct expression plone;static struct expression germanic_plural;static voidinit_germanic_plural (){  if (plone.val.num == 0)    {      plvar.nargs = 0;      plvar.operation = var;      plone.nargs = 0;      plone.operation = num;      plone.val.num = 1;      germanic_plural.nargs = 2;      germanic_plural.operation = not_equal;      germanic_plural.val.args[0] = &plvar;      germanic_plural.val.args[1] = &plone;    }}# define INIT_GERMANIC_PLURAL() init_germanic_plural ()#endif/* Initialize the codeset dependent parts of an opened message catalog.   Return the header entry.  */const char *internal_function_nl_init_domain_conv (domain_file, domain, domainbinding)     struct loaded_l10nfile *domain_file;     struct loaded_domain *domain;     struct binding *domainbinding;{  /* Find out about the character set the file is encoded with.     This can be found (in textual form) in the entry "".  If this     entry does not exist or if this does not contain the `charset='     information, we will assume the charset matches the one the     current locale and we don't have to perform any conversion.  */  char *nullentry;  size_t nullentrylen;  /* Preinitialize fields, to avoid recursion during _nl_find_msg.  */  domain->codeset_cntr =    (domainbinding != NULL ? domainbinding->codeset_cntr : 0);#ifdef _LIBC  domain->conv = (__gconv_t) -1;#else# if HAVE_ICONV  domain->conv = (iconv_t) -1;# endif#endif  domain->conv_tab = NULL;  /* Get the header entry.  */  nullentry = _nl_find_msg (domain_file, domainbinding, "", &nullentrylen);  if (nullentry != NULL)    {#if defined _LIBC || HAVE_ICONV      const char *charsetstr;      charsetstr = strstr (nullentry, "charset=");      if (charsetstr != NULL)	{	  size_t len;	  char *charset;	  const char *outcharset;	  charsetstr += strlen ("charset=");	  len = strcspn (charsetstr, " \t\n");	  charset = (char *) alloca (len + 1);# if defined _LIBC || HAVE_MEMPCPY	  *((char *) mempcpy (charset, charsetstr, len)) = '\0';# else	  memcpy (charset, charsetstr, len);	  charset[len] = '\0';# endif	  /* The output charset should normally be determined by the	     locale.  But sometimes the locale is not used or not correctly	     set up, so we provide a possibility for the user to override	     this.  Moreover, the value specified through	     bind_textdomain_codeset overrides both.  */	  if (domainbinding != NULL && domainbinding->codeset != NULL)	    outcharset = domainbinding->codeset;	  else	    {	      outcharset = getenv ("OUTPUT_CHARSET");	      if (outcharset == NULL || outcharset[0] == '\0')		{# ifdef _LIBC		  outcharset = (*_nl_current[LC_CTYPE])->values[_NL_ITEM_INDEX (CODESET)].string;# else#  if HAVE_ICONV		  extern const char *locale_charset (void);		  outcharset = locale_charset ();#  endif# endif		}	    }# ifdef _LIBC	  /* We always want to use transliteration.  */	  outcharset = norm_add_slashes (outcharset, "TRANSLIT");	  charset = norm_add_slashes (charset, NULL);	  if (__gconv_open (outcharset, charset, &domain->conv,			    GCONV_AVOID_NOCONV)	      != __GCONV_OK)	    domain->conv = (__gconv_t) -1;# else#  if HAVE_ICONV	  /* When using GNU libiconv, we want to use transliteration.  */#   if _LIBICONV_VERSION >= 0x0105	  len = strlen (outcharset);	  {	    char *tmp = (char *) alloca (len + 10 + 1);	    memcpy (tmp, outcharset, len);	    memcpy (tmp + len, "//TRANSLIT", 10 + 1);	    outcharset = tmp;	  }#   endif	  domain->conv = iconv_open (outcharset, charset);#   if _LIBICONV_VERSION >= 0x0105	  freea (outcharset);#   endif#  endif# endif	  freea (charset);	}#endif /* _LIBC || HAVE_ICONV */    }  return nullentry;}/* Frees the codeset dependent parts of an opened message catalog.  */voidinternal_function_nl_free_domain_conv (domain)     struct loaded_domain *domain;{  if (domain->conv_tab != NULL && domain->conv_tab != (char **) -1)    free (domain->conv_tab);#ifdef _LIBC  if (domain->conv != (__gconv_t) -1)    __gconv_close (domain->conv);#else# if HAVE_ICONV  if (domain->conv != (iconv_t) -1)    iconv_close (domain->conv);# endif#endif}/* Load the message catalogs specified by FILENAME.  If it is no valid   message catalog do nothing.  */voidinternal_function_nl_load_domain (domain_file, domainbinding)     struct loaded_l10nfile *domain_file;     struct binding *domainbinding;{  int fd;  size_t size;#ifdef _LIBC  struct stat64 st;#else  struct stat st;#endif  struct mo_file_header *data = (struct mo_file_header *) -1;  int use_mmap = 0;  struct loaded_domain *domain;  const char *nullentry;  domain_file->decided = 1;  domain_file->data = NULL;  /* Note that it would be useless to store domainbinding in domain_file     because domainbinding might be == NULL now but != NULL later (after     a call to bind_textdomain_codeset).  */  /* If the record does not represent a valid locale the FILENAME     might be NULL.  This can happen when according to the given     specification the locale file name is different for XPG and CEN     syntax.  */  if (domain_file->filename == NULL)    return;  /* Try to open the addressed file.  */  fd = open (domain_file->filename, O_RDONLY | O_BINARY);  if (fd == -1)    return;  /* We must know about the size of the file.  */  if (#ifdef _LIBC      __builtin_expect (fstat64 (fd, &st) != 0, 0)#else      __builtin_expect (fstat (fd, &st) != 0, 0)#endif      || __builtin_expect ((size = (size_t) st.st_size) != st.st_size, 0)      || __builtin_expect (size < sizeof (struct mo_file_header), 0))    {      /* Something went wrong.  */      close (fd);      return;    }#ifdef HAVE_MMAP  /* Now we are ready to load the file.  If mmap() is available we try     this first.  If not available or it failed we try to load it.  */  data = (struct mo_file_header *) mmap (NULL, size, PROT_READ,					 MAP_PRIVATE, fd, 0);  if (__builtin_expect (data != (struct mo_file_header *) -1, 1))    {      /* mmap() call was successful.  */      close (fd);      use_mmap = 1;    }#endif  /* If the data is not yet available (i.e. mmap'ed) we try to load     it manually.  */  if (data == (struct mo_file_header *) -1)    {      size_t to_read;      char *read_ptr;      data = (struct mo_file_header *) malloc (size);      if (data == NULL)	return;      to_read = size;      read_ptr = (char *) data;      do	{	  long int nb = (long int) read (fd, read_ptr, to_read);	  if (nb <= 0)	    {#ifdef EINTR	      if (nb == -1 && errno == EINTR)		continue;#endif	      close (fd);	      return;	    }	  read_ptr += nb;	  to_read -= nb;	}      while (to_read > 0);      close (fd);    }  /* Using the magic number we can test whether it really is a message     catalog file.  */  if (__builtin_expect (data->magic != _MAGIC && data->magic != _MAGIC_SWAPPED,			0))    {      /* The magic number is wrong: not a message catalog file.  */#ifdef HAVE_MMAP      if (use_mmap)	munmap ((caddr_t) data, size);      else#endif	free (data);      return;    }  domain = (struct loaded_domain *) malloc (sizeof (struct loaded_domain));  if (domain == NULL)    return;  domain_file->data = domain;  domain->data = (char *) data;  domain->use_mmap = use_mmap;  domain->mmap_size = size;  domain->must_swap = data->magic != _MAGIC;  /* Fill in the information about the available tables.  */  switch (W (domain->must_swap, data->revision))    {    case 0:      domain->nstrings = W (domain->must_swap, data->nstrings);      domain->orig_tab = (struct string_desc *)	((char *) data + W (domain->must_swap, data->orig_tab_offset));      domain->trans_tab = (struct string_desc *)	((char *) data + W (domain->must_swap, data->trans_tab_offset));      domain->hash_size = W (domain->must_swap, data->hash_tab_size);      domain->hash_tab = (nls_uint32 *)	((char *) data + W (domain->must_swap, data->hash_tab_offset));      break;    default:      /* This is an invalid revision.  */#ifdef HAVE_MMAP      if (use_mmap)	munmap ((caddr_t) data, size);      else#endif	free (data);      free (domain);      domain_file->data = NULL;      return;    }  /* Now initialize the character set converter from the character set     the file is encoded with (found in the header entry) to the domain's     specified character set or the locale's character set.  */  nullentry = _nl_init_domain_conv (domain_file, domain, domainbinding);  /* Also look for a plural specification.  */  if (nullentry != NULL)    {      const char *plural;      const char *nplurals;      plural = strstr (nullentry, "plural=");      nplurals = strstr (nullentry, "nplurals=");      if (plural == NULL || nplurals == NULL)	goto no_plural;      else	{	  /* First get the number.  */	  char *endp;	  unsigned long int n;	  struct parse_args args;	  nplurals += 9;	  while (*nplurals != '\0' && isspace (*nplurals))	    ++nplurals;#if defined HAVE_STRTOUL || defined _LIBC	  n = strtoul (nplurals, &endp, 10);#else	  for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++)	    n = n * 10 + (*endp - '0');#endif	  domain->nplurals = n;	  if (nplurals == endp)	    goto no_plural;	  /* Due to the restrictions bison imposes onto the interface of the	     scanner function we have to put the input string and the result	     passed up from the parser into the same structure which address	     is passed down to the parser.  */	  plural += 7;	  args.cp = plural;	  if (PLURAL_PARSE (&args) != 0)	    goto no_plural;	  domain->plural = args.res;	}    }  else    {      /* By default we are using the Germanic form: singular form only         for `one', the plural form otherwise.  Yes, this is also what         English is using since English is a Germanic language.  */    no_plural:      INIT_GERMANIC_PLURAL ();      domain->plural = &germanic_plural;      domain->nplurals = 2;    }}#ifdef _LIBCvoidinternal_function_nl_unload_domain (domain)     struct loaded_domain *domain;{  if (domain->plural != &germanic_plural)    __gettext_free_exp (domain->plural);  _nl_free_domain_conv (domain);# ifdef _POSIX_MAPPED_FILES  if (domain->use_mmap)    munmap ((caddr_t) domain->data, domain->mmap_size);  else# endif	/* _POSIX_MAPPED_FILES */    free ((void *) domain->data);  free (domain);}#endif

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
男人的j进女人的j一区| 日韩av一区二区三区四区| 欧美日本国产视频| 国产高清不卡二三区| 樱桃国产成人精品视频| 26uuu国产一区二区三区| 色哟哟日韩精品| 国产成人综合自拍| 天天影视网天天综合色在线播放| 欧美激情在线一区二区| 制服丝袜亚洲色图| 色一情一乱一乱一91av| 国产毛片一区二区| 麻豆国产精品视频| 午夜电影网一区| 亚洲欧洲日韩av| 国产欧美一二三区| 精品三级av在线| 884aa四虎影成人精品一区| 91网址在线看| 成人教育av在线| 国产一区二区伦理| 精品一区二区在线免费观看| 午夜久久电影网| 一区二区三区精品在线观看| 自拍av一区二区三区| 国产午夜精品久久久久久免费视 | 国产精品中文字幕日韩精品 | 国内精品伊人久久久久影院对白| 亚洲综合网站在线观看| 亚洲人一二三区| 国产精品久久精品日日| 中文字幕第一区综合| 国产午夜一区二区三区| 久久久.com| 久久久久久久久久久久久久久99| 精品少妇一区二区三区视频免付费 | 91一区一区三区| 97se亚洲国产综合自在线不卡 | 在线免费观看日本欧美| 日本韩国一区二区| 在线观看日韩精品| 欧美视频一区二区三区在线观看| 在线免费一区三区| 欧美三级电影精品| 欧美日韩精品电影| 日韩三级中文字幕| 337p日本欧洲亚洲大胆色噜噜| 日韩一区二区视频| 欧美videos中文字幕| 欧美精品一区二区不卡 | 日韩一级二级三级| 日韩精品一区二区三区在线观看| 精品久久久久久久人人人人传媒| 精品国产亚洲在线| 国产日韩在线不卡| 亚洲日本在线a| 午夜免费欧美电影| 理论片日本一区| 成人一二三区视频| 一本大道久久精品懂色aⅴ| 欧洲色大大久久| 欧美一区二区久久久| 久久亚洲捆绑美女| 亚洲欧美一区二区三区国产精品| 亚洲一区二区三区四区在线| 日韩精品每日更新| 国产精品一区二区在线播放| 99久久免费精品| 777色狠狠一区二区三区| 精品久久久网站| 亚洲欧洲无码一区二区三区| 亚洲电影在线免费观看| 久久99国产精品麻豆| av网站免费线看精品| 欧美色图第一页| 久久免费视频色| 亚洲最新视频在线观看| 韩国av一区二区三区四区 | 久久久一区二区三区捆绑**| 国产精品欧美极品| 亚洲成av人片在线| 福利一区在线观看| 欧美日本不卡视频| 国产精品亲子伦对白| 午夜激情一区二区| 成人黄色大片在线观看| 欧美一区欧美二区| 自拍偷拍国产亚洲| 国内一区二区在线| 欧美色偷偷大香| 国产精品入口麻豆原神| 日韩精品欧美成人高清一区二区| 成人免费看片app下载| 欧美卡1卡2卡| 国产精品三级av| 久久se精品一区二区| 91国内精品野花午夜精品| 欧美成人一区二区三区片免费 | 亚洲欧美日韩一区| 久久精品久久99精品久久| 色婷婷av一区二区三区大白胸| 久久人人爽人人爽| 日日夜夜一区二区| 色域天天综合网| 亚洲国产精品ⅴa在线观看| 麻豆成人91精品二区三区| 欧美性三三影院| 国产精品另类一区| 另类的小说在线视频另类成人小视频在线 | 欧美日韩国产一级| 亚洲视频每日更新| 成人网在线免费视频| 日韩欧美自拍偷拍| 亚洲国产一区二区在线播放| 成人av午夜影院| 国产日韩精品一区二区三区| 久久99精品久久久久久| 欧美日韩成人综合| 亚洲一区在线视频观看| 99视频有精品| 国产精品久久久久婷婷| 国产精品91xxx| 久久嫩草精品久久久精品一| 久久精品99国产精品| 777午夜精品免费视频| 午夜影视日本亚洲欧洲精品| 日本丰满少妇一区二区三区| 亚洲日穴在线视频| 一本色道久久综合亚洲aⅴ蜜桃 | 色综合天天综合在线视频| 日韩一区二区在线播放| 日韩一区精品视频| 欧美电影在哪看比较好| 亚洲成人激情av| 欧美日韩一区久久| 午夜精品123| 欧美精品乱人伦久久久久久| 婷婷开心久久网| 欧美丰满嫩嫩电影| 日本va欧美va精品| 日韩精品专区在线影院重磅| 美女爽到高潮91| 精品999在线播放| 国产一区不卡视频| 国产清纯美女被跳蛋高潮一区二区久久w| 精品综合免费视频观看| 亚洲精品在线观看视频| 国产一区二区伦理| 国产精品久久99| 色欧美片视频在线观看| 一区二区三区高清不卡| 欧美色图一区二区三区| 午夜精品久久久久久久久久久 | 蜜桃视频在线观看一区| 国产麻豆日韩欧美久久| 久久先锋影音av鲁色资源网| 国产精一区二区三区| 国产精品青草久久| 色88888久久久久久影院按摩 | 国产盗摄一区二区| 国产精品免费aⅴ片在线观看| 一本到三区不卡视频| 午夜一区二区三区视频| 日韩精品一区二区三区四区视频| 国产一区不卡精品| 亚洲男同性视频| 欧美精品久久99久久在免费线| 久久电影网电视剧免费观看| 中文字幕精品一区二区精品绿巨人 | 亚洲精品综合在线| 欧美伦理视频网站| 国内精品久久久久影院色| 国产精品久久免费看| 欧美日韩中文另类| 国精产品一区一区三区mba桃花 | 一区二区三区小说| 日韩欧美色电影| 成人97人人超碰人人99| 天天综合天天做天天综合| 国产亚洲美州欧州综合国| 在线观看亚洲一区| 国产真实乱子伦精品视频| 国产清纯白嫩初高生在线观看91 | 亚洲少妇30p| 欧美日本一道本| 成人午夜在线免费| 五月综合激情网| 中文字幕欧美区| 欧美一级一区二区| 91污在线观看| 激情综合色播激情啊| 亚洲超碰97人人做人人爱| 国产视频在线观看一区二区三区| 欧美午夜片在线看| 国产福利91精品一区二区三区| 亚洲成人1区2区| 成人欧美一区二区三区1314 | 国产欧美精品区一区二区三区| 欧美日韩国产天堂|