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

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

?? dcigettext.c

?? minicom 源碼
?? C
?? 第 1 頁 / 共 3 頁
字號(hào):
/* 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;

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
伊人一区二区三区| 久久99精品国产麻豆婷婷 | 91亚洲精品乱码久久久久久蜜桃| 亚洲欧美另类综合偷拍| 精品国产乱码久久久久久免费 | 精品国产a毛片| 91成人国产精品| 国产成人精品免费视频网站| 天天av天天翘天天综合网色鬼国产| 久久亚洲一区二区三区四区| 欧美另类变人与禽xxxxx| 99久久精品国产网站| 国产精品12区| 国模冰冰炮一区二区| 日韩精品电影一区亚洲| 一区二区三区自拍| 国产精品第五页| 欧美激情综合网| 久久综合五月天婷婷伊人| 欧美日韩的一区二区| 色综合久久66| 91麻豆蜜桃一区二区三区| 成人综合激情网| 国产一区二区三区观看| 麻豆国产一区二区| 日韩中文字幕1| 午夜国产精品影院在线观看| 亚洲综合丁香婷婷六月香| 日韩一区中文字幕| 中文字幕精品在线不卡| 久久精品欧美一区二区三区不卡| 日韩写真欧美这视频| 7777精品伊人久久久大香线蕉的| 欧美亚洲日本国产| 在线看日韩精品电影| 91麻豆精东视频| 一本高清dvd不卡在线观看| 91蜜桃网址入口| 91老司机福利 在线| 99久久久精品| 日本精品视频一区二区三区| 色婷婷av一区二区三区gif| 色成人在线视频| 在线观看国产91| 欧美日韩视频在线第一区| 欧美男同性恋视频网站| 在线电影国产精品| 91精品欧美一区二区三区综合在| 欧美日韩一区二区三区四区| 欧美日韩精品久久久| 欧美日韩国产片| 日韩一区二区在线观看| 精品免费日韩av| 欧美激情在线看| 成人免费一区二区三区在线观看| 中文字幕一区二区三区精华液| 亚洲欧洲成人av每日更新| 国产精品超碰97尤物18| 一区二区三区精品视频| 亚洲成人av中文| 久久国产精品72免费观看| 国产成人激情av| 色综合久久综合网欧美综合网| 欧美日韩免费观看一区二区三区| 日韩三级视频中文字幕| 欧美国产国产综合| 一区二区三区资源| 久久99国内精品| 成人sese在线| 欧美日韩精品欧美日韩精品| 精品成人一区二区三区| 国产精品久久看| 午夜影院在线观看欧美| 国产在线视频一区二区| 91欧美一区二区| 欧美一区二区三区在线观看| 久久精品网站免费观看| 亚洲最大成人综合| 精品一区二区三区视频在线观看 | 亚洲国产日韩a在线播放| 日本亚洲最大的色成网站www| 国产主播一区二区| 欧美亚洲动漫精品| 久久精品亚洲精品国产欧美kt∨| 亚洲男同1069视频| 国产在线精品一区二区| 色婷婷久久久久swag精品| 精品99一区二区| 亚洲精品视频免费观看| 九九国产精品视频| 色老头久久综合| 久久在线观看免费| 亚洲国产精品尤物yw在线观看| 激情小说欧美图片| 91福利区一区二区三区| 国产午夜精品在线观看| 午夜天堂影视香蕉久久| 成人免费毛片a| 精品国产麻豆免费人成网站| 亚洲综合视频在线观看| 国产成a人亚洲精品| 日韩视频永久免费| 亚洲综合久久av| 99久久婷婷国产综合精品| 精品成人一区二区三区| 日韩电影在线观看电影| 色综合久久综合网欧美综合网| 久久久久久久性| 日本va欧美va瓶| 欧美无乱码久久久免费午夜一区| 欧美激情在线一区二区三区| 精品在线观看视频| 欧美精品精品一区| 夜夜嗨av一区二区三区中文字幕 | 国产欧美一区视频| 美女国产一区二区| 欧美日韩一二三| 亚洲精品视频免费观看| 99久久伊人精品| 国产日本欧美一区二区| 精品中文av资源站在线观看| 在线不卡中文字幕| 亚洲国产精品麻豆| 91丨porny丨最新| 国产精品福利影院| 成人深夜视频在线观看| 国产精品色呦呦| 国产.精品.日韩.另类.中文.在线.播放| 欧美一区二区三区电影| 三级欧美在线一区| 欧美精品久久天天躁| 亚洲一区二区三区美女| 欧美做爰猛烈大尺度电影无法无天| 国产精品久线观看视频| www.日韩在线| 国产精品麻豆视频| 99国产精品久久久| 亚洲男女一区二区三区| 91玉足脚交白嫩脚丫在线播放| 亚洲私人影院在线观看| av在线不卡网| 亚洲欧美日韩国产手机在线| 91九色02白丝porn| 亚洲午夜免费电影| 在线成人高清不卡| 精品夜夜嗨av一区二区三区| 2023国产精品视频| 国产成人在线视频免费播放| 中文字幕的久久| 99国产麻豆精品| 亚洲国产日韩av| 日韩视频免费观看高清完整版在线观看| 日韩福利视频导航| 精品成人a区在线观看| 成人亚洲精品久久久久软件| 亚洲四区在线观看| 欧美精品高清视频| 精品在线观看视频| **网站欧美大片在线观看| 色婷婷综合久久| 奇米888四色在线精品| 欧美精品一区在线观看| 成人性生交大片免费| 亚洲美女在线一区| 制服丝袜av成人在线看| 国产一区二区日韩精品| 日韩一区在线播放| 7777精品久久久大香线蕉| 国产精品一二三在| 亚洲综合精品自拍| 精品盗摄一区二区三区| 色琪琪一区二区三区亚洲区| 日韩和欧美一区二区三区| 国产喷白浆一区二区三区| 欧美揉bbbbb揉bbbbb| 国模大尺度一区二区三区| 一区二区三区四区在线播放| 欧美大白屁股肥臀xxxxxx| 成人av在线一区二区三区| 亚洲va天堂va国产va久| 国产欧美日韩一区二区三区在线观看| 欧美在线啊v一区| 国产传媒欧美日韩成人| 天天综合天天做天天综合| 中文字幕乱码日本亚洲一区二区| 欧美另类久久久品| 成人av网站在线观看| 免费成人在线影院| 亚洲最大成人网4388xx| 久久蜜桃香蕉精品一区二区三区| 日本黄色一区二区| 国产精品1024| 免费高清在线一区| 亚洲一区二区三区四区在线免费观看 | 久久久91精品国产一区二区精品 | 亚洲婷婷在线视频| 欧美成人精品福利| 在线观看日韩av先锋影音电影院| 国产精品中文欧美| 视频一区欧美日韩|