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

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

?? dcigettext.c

?? 磁盤管理工具,主要管理光盤信息和內容希望大家喜歡
?? C
?? 第 1 頁 / 共 4 頁
字號:
/* Implementation of the internal dcigettext function.   Copyright (C) 1995-1999, 2000-2006 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,   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/* NL_LOCALE_NAME does not work in glibc-2.4.  Ignore it.  */#undef HAVE_NL_LOCALE_NAME#include <sys/types.h>#ifdef __GNUC__# define alloca __builtin_alloca# define HAVE_ALLOCA 1#else# ifdef _MSC_VER#  include <malloc.h>#  define alloca _alloca# else#  if defined HAVE_ALLOCA_H || defined _LIBC#   include <alloca.h>#  else#   ifdef _AIX #pragma alloca#   else#    ifndef allocachar *alloca ();#    endif#   endif#  endif# endif#endif#include <errno.h>#ifndef errnoextern int errno;#endif#ifndef __set_errno# define __set_errno(val) errno = (val)#endif#include <stddef.h>#include <stdlib.h>#include <string.h>#if defined HAVE_UNISTD_H || defined _LIBC# include <unistd.h>#endif#include <locale.h>#ifdef _LIBC  /* Guess whether integer division by zero raises signal SIGFPE.     Set to 1 only if you know for sure.  In case of doubt, set to 0.  */# if defined __alpha__ || defined __arm__ || defined __i386__ \     || defined __m68k__ || defined __s390__#  define INTDIV0_RAISES_SIGFPE 1# else#  define INTDIV0_RAISES_SIGFPE 0# endif#endif#if !INTDIV0_RAISES_SIGFPE# include <signal.h>#endif#if defined HAVE_SYS_PARAM_H || defined _LIBC# include <sys/param.h>#endif#if !defined _LIBC && HAVE_NL_LOCALE_NAME# include <langinfo.h>#endif#include "gettextP.h"#include "plural-exp.h"#ifdef _LIBC# include <libintl.h>#else# ifdef IN_LIBGLOCALE#  include <libintl.h># endif# include "libgnuintl.h"#endif#include "hash-string.h"/* Handle multi-threaded applications.  */#ifdef _LIBC# include <bits/libc-lock.h># define gl_rwlock_define_initialized __libc_rwlock_define_initialized# define gl_rwlock_rdlock __libc_rwlock_rdlock# define gl_rwlock_wrlock __libc_rwlock_wrlock# define gl_rwlock_unlock __libc_rwlock_unlock#else# include "lock.h"#endif/* Alignment of types.  */#if defined __GNUC__ && __GNUC__ >= 2# define alignof(TYPE) __alignof__ (TYPE)#else# define alignof(TYPE) \    ((int) &((struct { char dummy1; TYPE dummy2; } *) 0)->dummy2)#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_default_domain libintl_nl_default_default_domain# define _nl_current_default_domain libintl_nl_current_default_domain# 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 @@ */#ifdef _LIBC/* Rename the non ANSI C functions.  This is required by the standard   because some ANSI C functions will require linking with this object   file and the name space must not be polluted.  */# define getcwd __getcwd# ifndef stpcpy#  define stpcpy __stpcpy# endif# define tfind __tfind#else# if !defined HAVE_GETCWDchar *getwd ();#  define getcwd(buf, max) getwd (buf)# else#  if VMS#   define getcwd(buf, max) (getcwd) (buf, max, 0)#  elsechar *getcwd ();#  endif# endif# ifndef HAVE_STPCPYstatic char *stpcpy (char *dest, const char *src);# endif# ifndef HAVE_MEMPCPYstatic void *mempcpy (void *dest, const void *src, size_t n);# endif#endif/* Amount to increase buffer size by in each try.  */#define PATH_INCR 32/* The following is from pathmax.h.  *//* Non-POSIX BSD systems might have gcc's limits.h, which doesn't define   PATH_MAX but might cause redefinition warnings when sys/param.h is   later included (as on MORE/BSD 4.3).  */#if defined _POSIX_VERSION || (defined HAVE_LIMITS_H && !defined __GNUC__)# include <limits.h>#endif#ifndef _POSIX_PATH_MAX# define _POSIX_PATH_MAX 255#endif#if !defined PATH_MAX && defined _PC_PATH_MAX# define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf ("/", _PC_PATH_MAX))#endif/* Don't include sys/param.h if it already has been.  */#if defined HAVE_SYS_PARAM_H && !defined PATH_MAX && !defined MAXPATHLEN# include <sys/param.h>#endif#if !defined PATH_MAX && defined MAXPATHLEN# define PATH_MAX MAXPATHLEN#endif#ifndef PATH_MAX# define PATH_MAX _POSIX_PATH_MAX#endif/* Pathname support.   ISSLASH(C)           tests whether C is a directory separator character.   IS_ABSOLUTE_PATH(P)  tests whether P is an absolute path.  If it is not,                        it may be concatenated to a directory pathname.   IS_PATH_WITH_DIR(P)  tests whether P contains a directory specification. */#if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__  /* Win32, Cygwin, OS/2, DOS */# define ISSLASH(C) ((C) == '/' || (C) == '\\')# define HAS_DEVICE(P) \    ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \     && (P)[1] == ':')# define IS_ABSOLUTE_PATH(P) (ISSLASH ((P)[0]) || HAS_DEVICE (P))# define IS_PATH_WITH_DIR(P) \    (strchr (P, '/') != NULL || strchr (P, '\\') != NULL || HAS_DEVICE (P))#else  /* Unix */# define ISSLASH(C) ((C) == '/')# define IS_ABSOLUTE_PATH(P) ISSLASH ((P)[0])# define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL)#endif/* Whether to support different locales in different threads.  */#if defined _LIBC || HAVE_NL_LOCALE_NAME || (HAVE_STRUCT___LOCALE_STRUCT___NAMES && defined USE_IN_GETTEXT_TESTS) || defined IN_LIBGLOCALE# define HAVE_PER_THREAD_LOCALE#endif/* This is the type used for the search tree where known translations   are stored.  */struct known_translation_t{  /* Domain in which to search.  */  const char *domainname;  /* The category.  */  int category;#ifdef HAVE_PER_THREAD_LOCALE  /* Name of the relevant locale category, or "" for the global locale.  */  const char *localename;#endif#ifdef IN_LIBGLOCALE  /* The character encoding.  */  const char *encoding;#endif  /* State of the catalog counter at the point the string was found.  */  int counter;  /* Catalog where the string was found.  */  struct loaded_l10nfile *domain;  /* And finally the translation.  */  const char *translation;  size_t translation_length;  /* Pointer to the string in question.  */  char msgid[ZERO];};/* Root of the search tree with known translations.  We can use this   only if the system provides the `tsearch' function family.  */#if defined HAVE_TSEARCH || defined _LIBC# include <search.h>gl_rwlock_define_initialized (static, tree_lock)static void *root;# ifdef _LIBC#  define tsearch __tsearch# endif/* Function to compare two entries in the table of known translations.  */static inttranscmp (const void *p1, const void *p2){  const struct known_translation_t *s1;  const struct known_translation_t *s2;  int result;  s1 = (const struct known_translation_t *) p1;  s2 = (const struct known_translation_t *) p2;  result = strcmp (s1->msgid, s2->msgid);  if (result == 0)    {      result = strcmp (s1->domainname, s2->domainname);      if (result == 0)	{#ifdef HAVE_PER_THREAD_LOCALE	  result = strcmp (s1->localename, s2->localename);	  if (result == 0)#endif	    {#ifdef IN_LIBGLOCALE	      result = strcmp (s1->encoding, s2->encoding);	      if (result == 0)#endif		/* We compare the category last (though this is the cheapest		   operation) since it is hopefully always the same (namely		   LC_MESSAGES).  */		result = s1->category - s2->category;	    }	}    }  return result;}#endif/* Name of the default domain used for gettext(3) prior any call to   textdomain(3).  The default value for this is "messages".  */const char _nl_default_default_domain[] attribute_hidden = "messages";#ifndef IN_LIBGLOCALE/* Value used as the default domain for gettext(3).  */const char *_nl_current_default_domain attribute_hidden     = _nl_default_default_domain;#endif/* Contains the default location of the message catalogs.  */#if defined __EMX__extern const char _nl_default_dirname[];#else# ifdef _LIBCextern const char _nl_default_dirname[];libc_hidden_proto (_nl_default_dirname)# endifconst char _nl_default_dirname[] = LOCALEDIR;# ifdef _LIBClibc_hidden_data_def (_nl_default_dirname)# endif#endif#ifndef IN_LIBGLOCALE/* List with bindings of specific domains created by bindtextdomain()   calls.  */struct binding *_nl_domain_bindings;#endif/* Prototypes for local functions.  */static char *plural_lookup (struct loaded_l10nfile *domain,			    unsigned long int n,			    const char *translation, size_t translation_len)     internal_function;#ifdef IN_LIBGLOCALEstatic const char *guess_category_value (int category,					 const char *categoryname,					 const char *localename)     internal_function;#elsestatic const char *guess_category_value (int category,					 const char *categoryname)     internal_function;#endif#ifdef _LIBC# include "../locale/localeinfo.h"# define category_to_name(category) \  _nl_category_names.str + _nl_category_name_idxs[category]#elsestatic const char *category_to_name (int category) internal_function;#endif#if (defined _LIBC || HAVE_ICONV) && !defined IN_LIBGLOCALEstatic const char *get_output_charset (struct binding *domainbinding)     internal_function;#endif/* For those loosing systems which don't have `alloca' we have to add   some additional code emulating it.  */#ifdef HAVE_ALLOCA/* Nothing has to be done.  */# define freea(p) /* nothing */# define ADD_BLOCK(list, address) /* nothing */# define FREE_BLOCKS(list) /* nothing */#elsestruct block_list{  void *address;  struct block_list *next;};# define ADD_BLOCK(list, addr)						      \  do {									      \    struct block_list *newp = (struct block_list *) malloc (sizeof (*newp));  \    /* If we cannot get a free block we cannot add the new element to	      \       the list.  */							      \    if (newp != NULL) {							      \      newp->address = (addr);						      \      newp->next = (list);						      \      (list) = newp;							      \    }									      \  } while (0)# define FREE_BLOCKS(list)						      \  do {									      \    while (list != NULL) {						      \      struct block_list *old = list;					      \      list = list->next;						      \      free (old->address);						      \      free (old);							      \    }									      \  } while (0)# undef alloca# define alloca(size) (malloc (size))# define freea(p) free (p)#endif	/* have alloca */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品免费国产一区二区三区四区| 伊人色综合久久天天| 亚洲精品中文在线观看| 亚洲卡通动漫在线| 婷婷久久综合九色国产成人| 日韩avvvv在线播放| 成人午夜精品一区二区三区| 在线亚洲高清视频| 欧美va亚洲va国产综合| 中文字幕一区不卡| 偷偷要91色婷婷| 国产成人综合精品三级| 在线观看国产一区二区| 精品三级在线看| 中文字幕亚洲视频| 亚洲欧美日韩国产综合在线| 亚洲色图在线看| 日本女人一区二区三区| 成人激情动漫在线观看| 欧美一区二区三区播放老司机| 美女视频黄频大全不卡视频在线播放| 国产综合色精品一区二区三区| 97久久精品人人做人人爽 | 日韩午夜精品视频| 亚洲人成网站影音先锋播放| 亚洲va欧美va国产va天堂影院| 国产成人在线视频免费播放| 欧美日韩一级二级| 一区在线播放视频| 国产伦精品一区二区三区视频青涩| 色婷婷av一区二区三区软件 | 久久久99久久| 日本aⅴ免费视频一区二区三区 | 国产一区二区三区电影在线观看 | 亚洲精品一卡二卡| 成人精品视频一区二区三区尤物| 欧美人妖巨大在线| 国产精品电影一区二区| 国产精品亚洲成人| 久久蜜桃一区二区| 九一九一国产精品| 日韩欧美国产一二三区| 美女网站色91| 777午夜精品视频在线播放| 一区二区久久久久久| 在线观看亚洲精品视频| 亚洲精品写真福利| 欧美丝袜自拍制服另类| 亚洲午夜成aⅴ人片| 欧美日韩亚洲综合一区| 色妞www精品视频| 国产精品乱码人人做人人爱| 成人高清视频在线观看| 亚洲视频一二区| 7777精品伊人久久久大香线蕉完整版 | 日韩欧美国产电影| 国内精品嫩模私拍在线| 久久久九九九九| 另类成人小视频在线| 欧美一级一区二区| 粉嫩13p一区二区三区| 亚洲精品国产一区二区精华液| 在线电影国产精品| 国产美女娇喘av呻吟久久| 国产精品色噜噜| 欧美另类videos死尸| 国产乱码精品一区二区三区av | 伊人性伊人情综合网| 日韩欧美一级特黄在线播放| 国产成人av资源| 午夜国产不卡在线观看视频| 欧美激情一区二区三区全黄| 欧美日韩国产乱码电影| 成人亚洲精品久久久久软件| 图片区日韩欧美亚洲| 亚洲欧美另类久久久精品| 久久综合色之久久综合| 欧美做爰猛烈大尺度电影无法无天| 免费高清视频精品| 亚洲一级二级三级在线免费观看| 精品国产制服丝袜高跟| 色综合久久久久久久| 国产精品一二三| 91在线视频在线| 国产成人在线电影| 精品制服美女丁香| 婷婷综合久久一区二区三区| 一区二区三区 在线观看视频| 国产日韩成人精品| 日韩一区二区三区精品视频| 色婷婷久久久亚洲一区二区三区| 国产一区二区久久| 九色综合国产一区二区三区| 午夜私人影院久久久久| 亚洲欧洲国产日本综合| 国产精品丝袜在线| 国产片一区二区| 久久久久久久久久久久电影 | 在线免费观看不卡av| 92国产精品观看| 91久久国产综合久久| 91高清视频免费看| 色老头久久综合| 欧美日韩在线不卡| 日韩欧美自拍偷拍| 日韩欧美另类在线| 欧美一卡在线观看| 欧美一级片免费看| 精品电影一区二区| 国产亚洲va综合人人澡精品| 中文字幕制服丝袜一区二区三区 | 美女高潮久久久| 波多野结衣的一区二区三区| 一本色道a无线码一区v| 欧美三级电影精品| 久久久噜噜噜久噜久久综合| 国产精品全国免费观看高清| 亚洲欧美另类小说视频| 亚洲一区免费视频| 久久99最新地址| 97精品久久久午夜一区二区三区| 一本一本久久a久久精品综合麻豆 一本一道波多野结衣一区二区 | 精品国产污污免费网站入口 | 日韩视频一区二区三区| 国产亚洲综合色| 亚洲国产日韩精品| 国产中文字幕精品| 91高清视频在线| 精品国产乱码久久| 国产精品家庭影院| 蜜臀av性久久久久蜜臀aⅴ流畅 | 国产精品高潮呻吟久久| 日本不卡一二三| 欧美在线免费观看亚洲| 久久久久久久久免费| 亚洲影院理伦片| 色综合婷婷久久| 久久久久久久久久久黄色| 日韩高清欧美激情| 欧美日韩一级大片网址| 1区2区3区国产精品| 国产激情一区二区三区四区| 欧美福利视频导航| 一区二区三区四区中文字幕| 国产成人日日夜夜| 久久久不卡影院| 看片的网站亚洲| 91麻豆精品国产91久久久久久| 18欧美亚洲精品| 国产精品一区二区91| 欧美亚洲综合在线| 香蕉影视欧美成人| 91精品国产91热久久久做人人 | 久久久午夜精品| 国产大陆a不卡| 国产日韩欧美精品在线| 国产很黄免费观看久久| 久久综合久久久久88| 精品系列免费在线观看| 欧美成人精品福利| 精品一区二区三区在线观看 | 亚洲欧美日韩系列| 欧美中文字幕久久| 亚洲综合色区另类av| 91黄色免费看| 午夜精品久久久久影视| 欧美日韩国产小视频在线观看| 免费看精品久久片| 久久久久高清精品| 91网站最新地址| 亚洲成人激情社区| 久久亚洲综合色| 99久久国产综合精品女不卡| 国产精品免费免费| 欧美一级高清片| 蜜桃视频一区二区三区| 日韩三级视频在线观看| 波多野结衣精品在线| 亚洲妇女屁股眼交7| 精品国产乱码久久久久久闺蜜| 成人不卡免费av| 裸体歌舞表演一区二区| 国产精品无人区| 日韩一区二区三| 欧美中文字幕一区二区三区 | 国产校园另类小说区| 欧美色中文字幕| www.一区二区| 国产精品一二一区| 日韩电影免费在线看| 亚洲精品美腿丝袜| 欧美激情中文字幕一区二区| 欧美乱妇15p| 精品视频1区2区| 91麻豆国产福利在线观看| 国产精品1区2区3区在线观看| 日韩高清欧美激情| 香蕉成人啪国产精品视频综合网| 国产精品久久久久久久裸模 | 成人激情动漫在线观看|