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

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

?? dcigettext.c

?? linux 下的超級終端 minicom
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* Implementation of the internal dcigettext function.   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 <sys/types.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 <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 !HAVE_STRCHR && !defined _LIBC# ifndef strchr#  define strchr index# endif#endif#if defined HAVE_UNISTD_H || defined _LIBC# include <unistd.h>#endif#include <locale.h>#if defined HAVE_SYS_PARAM_H || defined _LIBC# include <sys/param.h>#endif#include "gettextP.h"#ifdef _LIBC# include <libintl.h>#else# include "libgnuintl.h"#endif#include "hash-string.h"/* Thread safetyness.  */#ifdef _LIBC# include <bits/libc-lock.h>#else/* Provide dummy implementation if this is outside glibc.  */# define __libc_lock_define_initialized(CLASS, NAME)# define __libc_lock_lock(NAME)# define __libc_lock_unlock(NAME)# define __libc_rwlock_define_initialized(CLASS, NAME)# define __libc_rwlock_rdlock(NAME)# define __libc_rwlock_unlock(NAME)#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 _nl_default_default_domain__# define _nl_current_default_domain _nl_current_default_domain__# 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 @@ */#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)# elsechar *getcwd ();# endif# ifndef HAVE_STPCPYstatic char *stpcpy PARAMS ((char *dest, const char *src));# endif# ifndef HAVE_MEMPCPYstatic void *mempcpy PARAMS ((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 __EMX__ || defined __DJGPP__  /* Win32, 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/* XPG3 defines the result of `setlocale (category, NULL)' as:   ``Directs `setlocale()' to query `category' and return the current     setting of `local'.''   However it does not specify the exact format.  Neither do SUSV2 and   ISO C 99.  So we can use this feature only on selected systems (e.g.   those using GNU C Library).  */#if defined _LIBC || (defined __GNU_LIBRARY__ && __GNU_LIBRARY__ >= 2)# define HAVE_LOCALE_NULL#endif/* This is the type used for the search tree where known translations   are stored.  */struct known_translation_t{  /* Domain in which to search.  */  char *domainname;  /* The category.  */  int category;  /* 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>static void *root;# ifdef _LIBC#  define tsearch __tsearch# endif/* Function to compare two entries in the table of known translations.  */static int transcmp PARAMS ((const void *p1, const void *p2));static inttranscmp (p1, p2)     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)	/* 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[] = "messages";/* Value used as the default domain for gettext(3).  */const char *_nl_current_default_domain = _nl_default_default_domain;/* Contains the default location of the message catalogs.  */const char _nl_default_dirname[] = LOCALEDIR;/* List with bindings of specific domains created by bindtextdomain()   calls.  */struct binding *_nl_domain_bindings;/* Prototypes for local functions.  */static char *plural_lookup PARAMS ((struct loaded_l10nfile *domain,				    unsigned long int n,				    const char *translation,				    size_t translation_len))     internal_function;static unsigned long int plural_eval PARAMS ((struct expression *pexp,					      unsigned long int n))     internal_function;static const char *category_to_name PARAMS ((int category)) internal_function;static const char *guess_category_value PARAMS ((int category,						 const char *categoryname))     internal_function;/* 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 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);							      \    }									      \  } while (0)# undef alloca# define alloca(size) (malloc (size))#endif	/* have alloca */#ifdef _LIBC/* List of blocks allocated for translations.  */typedef struct transmem_list{  struct transmem_list *next;  char data[ZERO];} transmem_block_t;static struct transmem_list *transmem_list;#elsetypedef unsigned char transmem_block_t;#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 DCIGETTEXT __dcigettext#else# define DCIGETTEXT dcigettext__#endif/* Lock variable to protect the global data in the gettext implementation.  */#ifdef _LIBC__libc_rwlock_define_initialized (, _nl_state_lock)#endif/* Checking whether the binaries runs SUID must be done and glibc provides   easier methods therefore we make a difference here.  */#ifdef _LIBC# define ENABLE_SECURE __libc_enable_secure# define DETERMINE_SECURE#else# ifndef HAVE_GETUID#  define getuid() 0# endif# ifndef HAVE_GETGID#  define getgid() 0# endif# ifndef HAVE_GETEUID#  define geteuid() getuid()# endif# ifndef HAVE_GETEGID#  define getegid() getgid()# endifstatic int enable_secure;# define ENABLE_SECURE (enable_secure == 1)# define DETERMINE_SECURE \  if (enable_secure == 0)						      \    {									      \      if (getuid () != geteuid () || getgid () != getegid ())		      \	enable_secure = 1;						      \      else								      \	enable_secure = -1;						      \    }#endif/* Look up MSGID in the DOMAINNAME message catalog for the current   CATEGORY locale and, if PLURAL is nonzero, search over string   depending on the plural form determined by N.  */char *DCIGETTEXT (domainname, msgid1, msgid2, plural, n, category)     const char *domainname;     const char *msgid1;     const char *msgid2;     int plural;     unsigned long int n;     int category;{#ifndef HAVE_ALLOCA  struct block_list *block_list = NULL;#endif  struct loaded_l10nfile *domain;  struct binding *binding;  const char *categoryname;  const char *categoryvalue;  char *dirname, *xdomainname;  char *single_locale;  char *retval;  size_t retlen;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美色窝79yyyycom| 国产真实乱偷精品视频免| 国产欧美一区二区三区鸳鸯浴| 欧美日韩视频第一区| 色婷婷av一区二区| 色综合久久中文字幕| 色综合天天天天做夜夜夜夜做| 97久久超碰国产精品| 成人免费视频国产在线观看| 国产成人精品影院| 成人激情免费视频| 99精品国产热久久91蜜凸| 99久久免费视频.com| 色综合色综合色综合| 91久久精品午夜一区二区| 色婷婷激情久久| 欧美日韩中文国产| 欧美v国产在线一区二区三区| 欧美成人午夜电影| 中文字幕av免费专区久久| 日韩精品一卡二卡三卡四卡无卡| 伊人色综合久久天天| 日韩中文字幕1| 国产精品久久久爽爽爽麻豆色哟哟| 久久久亚洲午夜电影| 国产精品你懂的| 亚洲自拍偷拍综合| 精品一区免费av| 蜜桃一区二区三区在线| 日韩欧美国产高清| 自拍偷拍亚洲激情| 99精品在线免费| 国产精品第五页| 成人av网站在线观看免费| 国产嫩草影院久久久久| 国产黄色91视频| 久久久久国产精品人| 国产麻豆91精品| 久久精品亚洲一区二区三区浴池| 久久国产精品一区二区| 欧美精品一区二区三区很污很色的 | 中文字幕免费观看一区| 国产福利精品导航| 中文字幕一区二区三区色视频| 成人午夜电影网站| 亚洲色图视频网| 在线观看91视频| 日韩高清一区在线| 日韩免费一区二区三区在线播放| 韩日av一区二区| 国产喷白浆一区二区三区| voyeur盗摄精品| 亚洲一区影音先锋| 91精品国产一区二区三区蜜臀| 日本人妖一区二区| 久久久久亚洲蜜桃| 91在线精品一区二区| 亚洲国产成人高清精品| 日韩三级电影网址| 国产精品亚洲а∨天堂免在线| 国产精品久久久久久久久图文区 | 中文字幕在线不卡一区| 91九色最新地址| 日本大胆欧美人术艺术动态| 久久先锋影音av鲁色资源网| 99国产一区二区三精品乱码| 亚洲成a人片在线观看中文| 欧美成人性福生活免费看| 不卡一区二区三区四区| 午夜欧美大尺度福利影院在线看| 欧美mv和日韩mv国产网站| 99精品视频在线观看免费| 天使萌一区二区三区免费观看| 欧美精品一区二区三区在线播放| 91视频91自| 精品一区二区三区香蕉蜜桃| 日韩美女视频一区| 日韩欧美色综合| 一本大道久久精品懂色aⅴ| 免费成人在线视频观看| 亚洲婷婷在线视频| 久久久一区二区三区| 欧美日韩中文字幕一区二区| 福利电影一区二区三区| 日本亚洲免费观看| 亚洲欧美另类久久久精品2019| 久久女同精品一区二区| 欧美日本在线播放| 91免费精品国自产拍在线不卡| 精品系列免费在线观看| 亚洲在线成人精品| 国产精品欧美一区喷水| 精品久久久久久久久久久久包黑料 | 久久精品国产在热久久| 亚洲最色的网站| 国产精品欧美综合在线| 2017欧美狠狠色| 欧美一级欧美三级| 欧美日韩一区二区三区视频| www.66久久| 成人一区二区三区| 国模大尺度一区二区三区| 日本在线播放一区二区三区| 亚洲最色的网站| 亚洲乱码国产乱码精品精可以看| 日本一区二区久久| 久久久综合视频| 欧美精品一区二区三| 欧美一二三四区在线| 欧美性一二三区| 91福利在线免费观看| 91在线视频官网| 91香蕉视频mp4| av在线不卡免费看| 成人av在线影院| 国产成人在线电影| 国产大陆精品国产| 成人黄色免费短视频| 成年人午夜久久久| 一本一道久久a久久精品综合蜜臀| 北条麻妃国产九九精品视频| 成人开心网精品视频| 成人一区二区三区| av成人免费在线观看| 99国产精品久久| 色婷婷久久久久swag精品| 色天天综合色天天久久| 欧美在线观看一二区| 欧美色综合久久| 日韩一区二区三区免费观看| 欧美一区二区视频免费观看| 日韩精品在线一区二区| 精品福利av导航| 欧美激情一区二区| 亚洲欧美福利一区二区| 性感美女久久精品| 国内久久精品视频| 成人国产亚洲欧美成人综合网 | 国产精品久久久久影院| 亚洲视频狠狠干| 石原莉奈在线亚洲三区| 久久99国产精品久久99果冻传媒| 国产一区二区三区黄视频 | 国产精品久久久久一区二区三区| 一区在线播放视频| 日韩电影一区二区三区四区| 国产乱人伦偷精品视频不卡| 99精品偷自拍| 日韩一卡二卡三卡四卡| 国产欧美一区二区精品婷婷 | 亚洲欧美综合在线精品| 日韩激情视频网站| 成人性生交大片免费看中文网站| 欧美色视频在线| 久久夜色精品国产噜噜av| 伊人色综合久久天天| 国产麻豆午夜三级精品| 在线视频欧美精品| 久久久久久久国产精品影院| 一区二区三区成人| 国产成人一区在线| 欧美一区二区网站| 日韩理论片一区二区| 蜜桃精品视频在线| 色婷婷精品久久二区二区蜜臂av | 亚洲精品福利视频网站| 图片区小说区区亚洲影院| 久久99国产精品免费网站| 99视频一区二区| 久久人人97超碰com| 亚洲美女免费视频| 韩国精品主播一区二区在线观看 | 国产91对白在线观看九色| 91蝌蚪porny| 91精品国产麻豆| 国产精品家庭影院| 亚洲高清在线精品| jvid福利写真一区二区三区| 精品视频999| 国产午夜精品一区二区| 一区av在线播放| 国产剧情一区二区| 欧美精三区欧美精三区| 国产精品视频麻豆| 亚洲一级二级三级| 成人看片黄a免费看在线| 欧美日韩免费在线视频| 亚洲国产成人一区二区三区| 日韩高清一区二区| 在线精品视频免费播放| 久久久精品tv| 午夜精品久久久久久久久久| 不卡视频在线观看| 欧美三级电影网站| 18欧美乱大交hd1984| 国内精品自线一区二区三区视频| 欧美精品99久久久**| 亚洲欧美国产三级| 国产一区视频在线看| 欧美一级黄色片|