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

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

?? libgnuintl.h

?? linux下的串口工具
?? H
字號:
/* Message catalogs for internationalization.   Copyright (C) 1995-1997, 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.  */#ifndef _LIBINTL_H#define _LIBINTL_H	1#include <locale.h>/* The LC_MESSAGES locale category is the category used by the functions   gettext() and dgettext().  It is specified in POSIX, but not in ANSI C.   On systems that don't define it, use an arbitrary value instead.   On Solaris, <locale.h> defines __LOCALE_H (or _LOCALE_H in Solaris 2.5)   then includes <libintl.h> (i.e. this file!) and then only defines   LC_MESSAGES.  To avoid a redefinition warning, don't define LC_MESSAGES   in this case.  */#if !defined LC_MESSAGES && !(defined __LOCALE_H || (defined _LOCALE_H && defined __sun))# define LC_MESSAGES 1729#endif/* We define an additional symbol to signal that we use the GNU   implementation of gettext.  */#define __USE_GNU_GETTEXT 1/* Provide information about the supported file formats.  Returns the   maximum minor revision number supported for a given major revision.  */#define __GNU_GETTEXT_SUPPORTED_REVISION(major) \  ((major) == 0 ? 1 : -1)/* Resolve a platform specific conflict on DJGPP.  GNU gettext takes   precedence over _conio_gettext.  */#ifdef __DJGPP__# undef gettext#endif/* Use _INTL_PARAMS, not PARAMS, in order to avoid clashes with identifiers   used by programs.  Similarly, test __PROTOTYPES, not PROTOTYPES.  */#ifndef _INTL_PARAMS# if __STDC__ || defined __GNUC__ || defined __SUNPRO_C || defined __cplusplus || __PROTOTYPES#  define _INTL_PARAMS(args) args# else#  define _INTL_PARAMS(args) ()# endif#endif#ifdef __cplusplusextern "C" {#endif/* We redirect the functions to those prefixed with "libintl_".  This is   necessary, because some systems define gettext/textdomain/... in the C   library (namely, Solaris 2.4 and newer, and GNU libc 2.0 and newer).   If we used the unprefixed names, there would be cases where the   definition in the C library would override the one in the libintl.so   shared library.  Recall that on ELF systems, the symbols are looked   up in the following order:     1. in the executable,     2. in the shared libraries specified on the link command line, in order,     3. in the dependencies of the shared libraries specified on the link        command line,     4. in the dlopen()ed shared libraries, in the order in which they were        dlopen()ed.   The definition in the C library would override the one in libintl.so if   either     * -lc is given on the link command line and -lintl isn't, or     * -lc is given on the link command line before -lintl, or     * libintl.so is a dependency of a dlopen()ed shared library but not       linked to the executable at link time.   Since Solaris gettext() behaves differently than GNU gettext(), this   would be unacceptable.   The redirection happens by default through macros in C, so that &gettext   is independent of the compilation unit, but through inline functions in   C++, in order not to interfere with the name mangling of class fields or   class methods called 'gettext'.  *//* The user can define _INTL_REDIRECT_INLINE or _INTL_REDIRECT_MACROS.   If he doesn't, we choose the method.  A third possible method is   _INTL_REDIRECT_ASM, supported only by GCC.  */#if !(defined _INTL_REDIRECT_INLINE || defined _INTL_REDIRECT_MACROS)# if __GNUC__ >= 2 && (defined __STDC__ || defined __cplusplus)#  define _INTL_REDIRECT_ASM# else#  ifdef __cplusplus#   define _INTL_REDIRECT_INLINE#  else#   define _INTL_REDIRECT_MACROS#  endif# endif#endif/* Auxiliary macros.  */#ifdef _INTL_REDIRECT_ASM# define _INTL_ASM(cname) __asm__ (_INTL_ASMNAME (__USER_LABEL_PREFIX__, #cname))# define _INTL_ASMNAME(prefix,cnamestring) _INTL_STRINGIFY (prefix) cnamestring# define _INTL_STRINGIFY(prefix) #prefix#else# define _INTL_ASM(cname)#endif/* Look up MSGID in the current default message catalog for the current   LC_MESSAGES locale.  If not found, returns MSGID itself (the default   text).  */#ifdef _INTL_REDIRECT_INLINEextern char *libintl_gettext (const char *__msgid);static inline char *gettext (const char *__msgid){  return libintl_gettext (__msgid);}#else#ifdef _INTL_REDIRECT_MACROS# define gettext libintl_gettext#endifextern char *gettext _INTL_PARAMS ((const char *__msgid))       _INTL_ASM (libintl_gettext);#endif/* Look up MSGID in the DOMAINNAME message catalog for the current   LC_MESSAGES locale.  */#ifdef _INTL_REDIRECT_INLINEextern char *libintl_dgettext (const char *__domainname, const char *__msgid);static inline char *dgettext (const char *__domainname, const char *__msgid){  return libintl_dgettext (__domainname, __msgid);}#else#ifdef _INTL_REDIRECT_MACROS# define dgettext libintl_dgettext#endifextern char *dgettext _INTL_PARAMS ((const char *__domainname,				     const char *__msgid))       _INTL_ASM (libintl_dgettext);#endif/* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY   locale.  */#ifdef _INTL_REDIRECT_INLINEextern char *libintl_dcgettext (const char *__domainname, const char *__msgid,				int __category);static inline char *dcgettext (const char *__domainname, const char *__msgid,			       int __category){  return libintl_dcgettext (__domainname, __msgid, __category);}#else#ifdef _INTL_REDIRECT_MACROS# define dcgettext libintl_dcgettext#endifextern char *dcgettext _INTL_PARAMS ((const char *__domainname,				      const char *__msgid,				      int __category))       _INTL_ASM (libintl_dcgettext);#endif/* Similar to `gettext' but select the plural form corresponding to the   number N.  */#ifdef _INTL_REDIRECT_INLINEextern char *libintl_ngettext (const char *__msgid1, const char *__msgid2,			       unsigned long int __n);static inline char *ngettext (const char *__msgid1, const char *__msgid2,			      unsigned long int __n){  return libintl_ngettext (__msgid1, __msgid2, __n);}#else#ifdef _INTL_REDIRECT_MACROS# define ngettext libintl_ngettext#endifextern char *ngettext _INTL_PARAMS ((const char *__msgid1,				     const char *__msgid2,				     unsigned long int __n))       _INTL_ASM (libintl_ngettext);#endif/* Similar to `dgettext' but select the plural form corresponding to the   number N.  */#ifdef _INTL_REDIRECT_INLINEextern char *libintl_dngettext (const char *__domainname, const char *__msgid1,				const char *__msgid2, unsigned long int __n);static inline char *dngettext (const char *__domainname, const char *__msgid1,			       const char *__msgid2, unsigned long int __n){  return libintl_dngettext (__domainname, __msgid1, __msgid2, __n);}#else#ifdef _INTL_REDIRECT_MACROS# define dngettext libintl_dngettext#endifextern char *dngettext _INTL_PARAMS ((const char *__domainname,				      const char *__msgid1,				      const char *__msgid2,				      unsigned long int __n))       _INTL_ASM (libintl_dngettext);#endif/* Similar to `dcgettext' but select the plural form corresponding to the   number N.  */#ifdef _INTL_REDIRECT_INLINEextern char *libintl_dcngettext (const char *__domainname,				 const char *__msgid1, const char *__msgid2,				 unsigned long int __n, int __category);static inline char *dcngettext (const char *__domainname,				const char *__msgid1, const char *__msgid2,				unsigned long int __n, int __category){  return libintl_dcngettext (__domainname, __msgid1, __msgid2, __n, __category);}#else#ifdef _INTL_REDIRECT_MACROS# define dcngettext libintl_dcngettext#endifextern char *dcngettext _INTL_PARAMS ((const char *__domainname,				       const char *__msgid1,				       const char *__msgid2,				       unsigned long int __n,				       int __category))       _INTL_ASM (libintl_dcngettext);#endif/* Set the current default message catalog to DOMAINNAME.   If DOMAINNAME is null, return the current default.   If DOMAINNAME is "", reset to the default of "messages".  */#ifdef _INTL_REDIRECT_INLINEextern char *libintl_textdomain (const char *__domainname);static inline char *textdomain (const char *__domainname){  return libintl_textdomain (__domainname);}#else#ifdef _INTL_REDIRECT_MACROS# define textdomain libintl_textdomain#endifextern char *textdomain _INTL_PARAMS ((const char *__domainname))       _INTL_ASM (libintl_textdomain);#endif/* Specify that the DOMAINNAME message catalog will be found   in DIRNAME rather than in the system locale data base.  */#ifdef _INTL_REDIRECT_INLINEextern char *libintl_bindtextdomain (const char *__domainname,				     const char *__dirname);static inline char *bindtextdomain (const char *__domainname,				    const char *__dirname){  return libintl_bindtextdomain (__domainname, __dirname);}#else#ifdef _INTL_REDIRECT_MACROS# define bindtextdomain libintl_bindtextdomain#endifextern char *bindtextdomain _INTL_PARAMS ((const char *__domainname,					   const char *__dirname))       _INTL_ASM (libintl_bindtextdomain);#endif/* Specify the character encoding in which the messages from the   DOMAINNAME message catalog will be returned.  */#ifdef _INTL_REDIRECT_INLINEextern char *libintl_bind_textdomain_codeset (const char *__domainname,					      const char *__codeset);static inline char *bind_textdomain_codeset (const char *__domainname,					     const char *__codeset){  return libintl_bind_textdomain_codeset (__domainname, __codeset);}#else#ifdef _INTL_REDIRECT_MACROS# define bind_textdomain_codeset libintl_bind_textdomain_codeset#endifextern char *bind_textdomain_codeset _INTL_PARAMS ((const char *__domainname,						    const char *__codeset))       _INTL_ASM (libintl_bind_textdomain_codeset);#endif#ifdef __cplusplus}#endif#endif /* libintl.h */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品国产免费久久| 日本91福利区| 免费欧美日韩国产三级电影| 国产99一区视频免费| 欧美日韩在线观看一区二区| 国产婷婷色一区二区三区四区 | 色婷婷亚洲一区二区三区| 91精品婷婷国产综合久久性色| 综合av第一页| 国产成人精品在线看| 5566中文字幕一区二区电影| 综合电影一区二区三区| 国产麻豆91精品| 欧美大片一区二区| 亚洲成人免费av| 欧美亚洲一区二区在线观看| 国产精品麻豆久久久| 国产精品综合av一区二区国产馆| 欧美一区二区视频在线观看| 一色屋精品亚洲香蕉网站| 国产99久久精品| 久久久久国产精品麻豆ai换脸| 美女视频黄频大全不卡视频在线播放| 日本精品视频一区二区| 中文字幕在线不卡| 成人一级视频在线观看| 国产午夜亚洲精品理论片色戒 | 欧美美女视频在线观看| 亚洲日本免费电影| 色综合天天综合在线视频| 国产精品嫩草影院com| 国产成人精品www牛牛影视| 久久奇米777| 国产成人啪午夜精品网站男同| 精品国产第一区二区三区观看体验 | 国产麻豆精品久久一二三| 欧美精品一区男女天堂| 在线亚洲免费视频| 亚洲欧美一区二区三区孕妇| 成人av网站在线| 日韩久久一区二区| 欧美午夜免费电影| 亚洲女性喷水在线观看一区| 99热精品国产| 亚洲一区日韩精品中文字幕| 欧美三级视频在线观看| 热久久久久久久| 欧美精品一区二区三区蜜桃视频| 国产一区二区三区观看| 欧美激情一区二区三区蜜桃视频 | 一区二区久久久久| 在线欧美日韩精品| 婷婷亚洲久悠悠色悠在线播放 | 91免费版在线| 亚洲自拍欧美精品| 日韩限制级电影在线观看| 国产麻豆视频精品| 亚洲精品久久久蜜桃| 欧美日本一区二区三区四区| 看片网站欧美日韩| 欧美国产欧美亚州国产日韩mv天天看完整 | 欧美日韩一区精品| 日韩国产欧美三级| 中文一区在线播放| 91福利社在线观看| 看电视剧不卡顿的网站| 国产精品九色蝌蚪自拍| 欧美酷刑日本凌虐凌虐| 国产99久久久国产精品潘金网站| 久久99久久99精品免视看婷婷| 日本一区二区三区免费乱视频| 色婷婷综合久久久中文一区二区| 日本伊人色综合网| 亚洲三级免费观看| 欧美videos中文字幕| 在线免费精品视频| 国产精品自拍毛片| 亚洲.国产.中文慕字在线| 亚洲国产激情av| 欧美精品高清视频| 99r精品视频| 九一久久久久久| 亚洲愉拍自拍另类高清精品| 久久久91精品国产一区二区精品 | 亚洲免费观看在线观看| 日韩欧美视频在线| 欧美羞羞免费网站| 不卡高清视频专区| 韩国成人在线视频| 五月婷婷色综合| 亚洲精品国久久99热| 久久久国产一区二区三区四区小说| 欧美视频一区二区三区在线观看 | 久久综合一区二区| 欧美日本国产视频| 色一情一乱一乱一91av| 国产成人在线网站| 久久er精品视频| 水野朝阳av一区二区三区| 亚洲精品视频在线观看免费| 国产亚洲欧美日韩在线一区| 亚洲成人动漫在线观看| 国产精品国产三级国产| 久久嫩草精品久久久精品一| 91精品国产一区二区三区香蕉| 色综合咪咪久久| 91亚洲永久精品| 国产成人免费在线视频| 国产一区二区精品久久91| 韩日av一区二区| 久久成人av少妇免费| 精品一区二区影视| 九色|91porny| 国产乱对白刺激视频不卡| 极品少妇一区二区三区精品视频| 男女男精品视频| 另类综合日韩欧美亚洲| 卡一卡二国产精品| 九九精品一区二区| 国产一区二区三区在线观看免费| 韩日av一区二区| 国产suv精品一区二区三区 | 日韩不卡一区二区三区| 日韩高清电影一区| 久久精品国产色蜜蜜麻豆| 六月婷婷色综合| 国模冰冰炮一区二区| 国产激情一区二区三区| 粉嫩蜜臀av国产精品网站| 成a人片国产精品| 在线日韩av片| 欧美剧在线免费观看网站 | 92精品国产成人观看免费| 9人人澡人人爽人人精品| 色综合色综合色综合色综合色综合| 99久久精品99国产精品| 欧美日韩国产美| 精品久久久久久亚洲综合网| 久久尤物电影视频在线观看| 久久久久99精品一区| 国产精品久久久久久久久免费樱桃| 亚洲精品乱码久久久久久久久 | av在线免费不卡| 欧美亚洲一区二区三区四区| 欧美一区二区在线观看| 国产日产亚洲精品系列| 一区二区三区日本| 男人操女人的视频在线观看欧美| 国产麻豆成人精品| 欧美性三三影院| 久久夜色精品国产欧美乱极品| 中文字幕视频一区| 日本在线不卡视频| 99精品视频在线观看| 欧美巨大另类极品videosbest | 欧美主播一区二区三区美女| 日韩一区二区精品| 国产精品久久久久影视| 午夜欧美在线一二页| 国产大陆亚洲精品国产| 欧美日韩精品一区二区三区| 久久九九99视频| 日韩av电影免费观看高清完整版 | 91久久精品一区二区三| 欧美精品一区二区三区一线天视频| 亚洲人成影院在线观看| 久久99热狠狠色一区二区| 91福利资源站| 国产精品少妇自拍| 免费看欧美女人艹b| 色综合久久久网| 国产亚洲人成网站| 免费高清成人在线| 欧美性做爰猛烈叫床潮| 欧美国产一区在线| 精品亚洲成a人| 欧美日韩电影在线播放| 欧美国产丝袜视频| 激情五月婷婷综合网| 欧美群妇大交群中文字幕| 亚洲视频在线观看三级| 国产在线精品视频| 日韩欧美国产三级| 性欧美疯狂xxxxbbbb| 91污在线观看| 中文字幕欧美一区| 成人在线综合网站| 久久久天堂av| 国产真实精品久久二三区| 日韩丝袜美女视频| 日韩av网站在线观看| 欧美日韩二区三区| 亚洲一区二区在线免费看| 色综合网色综合| 国产精品初高中害羞小美女文| 国产福利精品一区| 国产精品少妇自拍| 不卡一二三区首页| 国产精品久久久久aaaa| 北条麻妃一区二区三区|