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

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

?? dcigettext.c

?? linux下的串口工具
?? C
?? 第 1 頁 / 共 3 頁
字號:
/* Implementation of the internal dcigettext function.   Copyright (C) 1995-1999, 2000-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.  *//* 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 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#include "gettextP.h"#include "plural-exp.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 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)# 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/* 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[] attribute_hidden = "messages";/* Value used as the default domain for gettext(3).  */const char *_nl_current_default_domain attribute_hidden     = _nl_default_default_domain;/* Contains the default location of the message catalogs.  */#if defined __EMX__extern const char _nl_default_dirname[];#elseconst char _nl_default_dirname[] = LOCALEDIR;#endif/* 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 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 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 */#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 libintl_dcigettext#endif/* Lock variable to protect the global data in the gettext implementation.  */#ifdef _LIBC__libc_rwlock_define_initialized (, _nl_state_lock attribute_hidden)#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/* Get the function to evaluate the plural expression.  */#include "eval-plural.h"

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲福利一二三区| 国产精品99久久久久久有的能看| 日本亚洲免费观看| 国产精品一线二线三线精华| 色欧美日韩亚洲| 久久久久久免费毛片精品| 日韩伦理电影网| 精东粉嫩av免费一区二区三区| 一本大道久久精品懂色aⅴ | 视频一区二区三区入口| 国产成人日日夜夜| 欧美一区二区视频在线观看| 最新成人av在线| 国产精品一区二区在线播放| 制服丝袜日韩国产| 亚洲国产另类av| 91免费看`日韩一区二区| 久久亚洲免费视频| 美脚の诱脚舐め脚责91| 欧美伊人精品成人久久综合97| 欧美激情一区二区在线| 美女性感视频久久| 7777精品伊人久久久大香线蕉最新版| 综合网在线视频| 成人av网在线| 国产精品灌醉下药二区| 国产一区二区三区精品视频| 欧美一二三区在线观看| 免费av网站大全久久| 欧美日韩一区不卡| 亚洲综合成人网| 欧洲av一区二区嗯嗯嗯啊| 亚洲视频在线观看一区| 99免费精品在线| 日本不卡1234视频| 欧美手机在线视频| 亚洲成a人片在线不卡一二三区 | 中文字幕国产一区二区| 国产精品一区二区无线| 国产日韩欧美在线一区| 国产精品一区二区视频| 久久精品亚洲乱码伦伦中文| 国产精品一级黄| 国产精品大尺度| 日本黄色一区二区| 亚洲一区二区高清| 这里是久久伊人| 国产一区二区三区四区五区美女| 久久蜜臀中文字幕| 成人97人人超碰人人99| 亚洲女同女同女同女同女同69| 在线亚洲欧美专区二区| 日日夜夜免费精品视频| 欧美成人vr18sexvr| 国产经典欧美精品| 亚洲少妇中出一区| 在线播放/欧美激情| 韩国女主播一区二区三区| 国产欧美一区二区三区在线看蜜臀| 成人午夜伦理影院| 亚洲高清免费在线| 26uuu亚洲综合色| 99久久综合色| 奇米777欧美一区二区| 久久精品视频在线免费观看| 97se亚洲国产综合自在线不卡| 亚洲国产一二三| 久久久亚洲高清| 欧美性大战xxxxx久久久| 久久精品国产免费| 亚洲欧美日韩人成在线播放| 6080国产精品一区二区| 国产成人亚洲综合色影视| 亚洲制服欧美中文字幕中文字幕| 日韩欧美一区在线| 91日韩一区二区三区| 久久9热精品视频| 亚洲男人的天堂一区二区 | 开心九九激情九九欧美日韩精美视频电影 | 亚洲国产成人精品视频| 欧美大片日本大片免费观看| www.日韩av| 久久精品99国产精品日本| 亚洲欧美日韩一区二区| 精品美女一区二区三区| 成人黄动漫网站免费app| 婷婷国产v国产偷v亚洲高清| 欧美高清一级片在线观看| 欧美一区二区精品| 91蝌蚪porny| 大陆成人av片| 久久不见久久见免费视频1| 一区二区三区成人在线视频| 国产日本亚洲高清| 日韩精品一区二区三区在线播放| 91亚洲大成网污www| 国产1区2区3区精品美女| 日韩黄色小视频| 亚洲精品国产一区二区三区四区在线 | 日韩国产精品91| 亚洲激情av在线| 中文字幕日韩欧美一区二区三区| 精品国产免费人成电影在线观看四季 | 亚洲一二三四在线观看| 国产精品久久久久一区二区三区共 | 成人免费视频免费观看| 麻豆精品一区二区综合av| 五月综合激情婷婷六月色窝| 亚洲精品免费在线播放| 亚洲欧洲另类国产综合| 欧美国产亚洲另类动漫| 国产视频一区在线播放| 久久久久综合网| 久久亚洲影视婷婷| 日韩欧美一级片| 欧美一级黄色片| 日韩一区二区电影网| 欧美一级高清片| 精品欧美一区二区久久| 日韩欧美国产综合一区 | 五月综合激情日本mⅴ| 午夜精品久久久久久久| 五月综合激情网| 捆绑变态av一区二区三区| 久久国产三级精品| 国产精品99久久久久久似苏梦涵| 国产另类ts人妖一区二区| 国产精品自拍一区| 国产**成人网毛片九色| 99re视频精品| 在线欧美日韩国产| 欧美日韩国产高清一区二区三区| 欧美猛男男办公室激情| 欧美一级一区二区| 精品久久久久香蕉网| 久久精品亚洲麻豆av一区二区| 国产调教视频一区| 亚洲天天做日日做天天谢日日欢| 亚洲女同一区二区| 午夜国产精品一区| 国产精选一区二区三区| av一二三不卡影片| 欧美日韩亚洲综合一区二区三区| 欧美精品v日韩精品v韩国精品v| 日韩欧美一级精品久久| 国产无人区一区二区三区| 亚洲欧美另类图片小说| 日韩精品一卡二卡三卡四卡无卡| 麻豆精品蜜桃视频网站| 成人午夜精品一区二区三区| 91久久精品网| 2024国产精品视频| 亚洲精品成人悠悠色影视| 男女激情视频一区| 成人国产免费视频| 欧美精选一区二区| 国产精品免费视频观看| 婷婷丁香久久五月婷婷| 成人在线综合网| 在线成人小视频| 成人免费一区二区三区视频| 日韩高清在线电影| 99re视频精品| 久久青草国产手机看片福利盒子 | 精品国产露脸精彩对白| 亚洲色图制服丝袜| 久久69国产一区二区蜜臀| 91国偷自产一区二区使用方法| 精品国产一区二区亚洲人成毛片| 亚洲精品videosex极品| 国产精品一区二区免费不卡| 欧美久久一二三四区| 亚洲色欲色欲www| 国产麻豆91精品| 日韩天堂在线观看| 亚洲国产日韩a在线播放性色| 国产91丝袜在线18| 欧美tk—视频vk| 日韩电影在线一区| 在线免费亚洲电影| 亚洲美女一区二区三区| 国产成人欧美日韩在线电影 | 成人高清免费观看| 精品入口麻豆88视频| 午夜国产精品影院在线观看| 一本色道久久综合狠狠躁的推荐 | 成人在线视频首页| 久久亚洲精品国产精品紫薇| 日韩avvvv在线播放| 欧美亚洲日本国产| 亚洲免费伊人电影| 色综合天天综合网天天看片| 国产日韩欧美精品电影三级在线 | 丝袜美腿亚洲色图| 欧美日韩亚洲综合一区| 亚洲人成7777| 色综合久久久久久久久久久| 最新日韩av在线| 99免费精品在线观看| 综合久久久久综合|