Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/AnonR/anonr.TX.../usr/include
File: libintl.h
/* Message catalogs for internationalization.
[0] Fix | Delete
Copyright (C) 1995-2018 Free Software Foundation, Inc.
[1] Fix | Delete
This file is part of the GNU C Library.
[2] Fix | Delete
This file is derived from the file libgettext.h in the GNU gettext package.
[3] Fix | Delete
[4] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[5] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[6] Fix | Delete
License as published by the Free Software Foundation; either
[7] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[8] Fix | Delete
[9] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[10] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[11] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[12] Fix | Delete
Lesser General Public License for more details.
[13] Fix | Delete
[14] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[15] Fix | Delete
License along with the GNU C Library; if not, see
[16] Fix | Delete
<http://www.gnu.org/licenses/>. */
[17] Fix | Delete
[18] Fix | Delete
#ifndef _LIBINTL_H
[19] Fix | Delete
#define _LIBINTL_H 1
[20] Fix | Delete
[21] Fix | Delete
#include <features.h>
[22] Fix | Delete
[23] Fix | Delete
/* We define an additional symbol to signal that we use the GNU
[24] Fix | Delete
implementation of gettext. */
[25] Fix | Delete
#define __USE_GNU_GETTEXT 1
[26] Fix | Delete
[27] Fix | Delete
/* Provide information about the supported file formats. Returns the
[28] Fix | Delete
maximum minor revision number supported for a given major revision. */
[29] Fix | Delete
#define __GNU_GETTEXT_SUPPORTED_REVISION(major) \
[30] Fix | Delete
((major) == 0 ? 1 : -1)
[31] Fix | Delete
[32] Fix | Delete
__BEGIN_DECLS
[33] Fix | Delete
[34] Fix | Delete
/* Look up MSGID in the current default message catalog for the current
[35] Fix | Delete
LC_MESSAGES locale. If not found, returns MSGID itself (the default
[36] Fix | Delete
text). */
[37] Fix | Delete
extern char *gettext (const char *__msgid)
[38] Fix | Delete
__THROW __attribute_format_arg__ (1);
[39] Fix | Delete
[40] Fix | Delete
/* Look up MSGID in the DOMAINNAME message catalog for the current
[41] Fix | Delete
LC_MESSAGES locale. */
[42] Fix | Delete
extern char *dgettext (const char *__domainname, const char *__msgid)
[43] Fix | Delete
__THROW __attribute_format_arg__ (2);
[44] Fix | Delete
extern char *__dgettext (const char *__domainname, const char *__msgid)
[45] Fix | Delete
__THROW __attribute_format_arg__ (2);
[46] Fix | Delete
[47] Fix | Delete
/* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
[48] Fix | Delete
locale. */
[49] Fix | Delete
extern char *dcgettext (const char *__domainname,
[50] Fix | Delete
const char *__msgid, int __category)
[51] Fix | Delete
__THROW __attribute_format_arg__ (2);
[52] Fix | Delete
extern char *__dcgettext (const char *__domainname,
[53] Fix | Delete
const char *__msgid, int __category)
[54] Fix | Delete
__THROW __attribute_format_arg__ (2);
[55] Fix | Delete
[56] Fix | Delete
[57] Fix | Delete
/* Similar to `gettext' but select the plural form corresponding to the
[58] Fix | Delete
number N. */
[59] Fix | Delete
extern char *ngettext (const char *__msgid1, const char *__msgid2,
[60] Fix | Delete
unsigned long int __n)
[61] Fix | Delete
__THROW __attribute_format_arg__ (1) __attribute_format_arg__ (2);
[62] Fix | Delete
[63] Fix | Delete
/* Similar to `dgettext' but select the plural form corresponding to the
[64] Fix | Delete
number N. */
[65] Fix | Delete
extern char *dngettext (const char *__domainname, const char *__msgid1,
[66] Fix | Delete
const char *__msgid2, unsigned long int __n)
[67] Fix | Delete
__THROW __attribute_format_arg__ (2) __attribute_format_arg__ (3);
[68] Fix | Delete
[69] Fix | Delete
/* Similar to `dcgettext' but select the plural form corresponding to the
[70] Fix | Delete
number N. */
[71] Fix | Delete
extern char *dcngettext (const char *__domainname, const char *__msgid1,
[72] Fix | Delete
const char *__msgid2, unsigned long int __n,
[73] Fix | Delete
int __category)
[74] Fix | Delete
__THROW __attribute_format_arg__ (2) __attribute_format_arg__ (3);
[75] Fix | Delete
[76] Fix | Delete
[77] Fix | Delete
/* Set the current default message catalog to DOMAINNAME.
[78] Fix | Delete
If DOMAINNAME is null, return the current default.
[79] Fix | Delete
If DOMAINNAME is "", reset to the default of "messages". */
[80] Fix | Delete
extern char *textdomain (const char *__domainname) __THROW;
[81] Fix | Delete
[82] Fix | Delete
/* Specify that the DOMAINNAME message catalog will be found
[83] Fix | Delete
in DIRNAME rather than in the system locale data base. */
[84] Fix | Delete
extern char *bindtextdomain (const char *__domainname,
[85] Fix | Delete
const char *__dirname) __THROW;
[86] Fix | Delete
[87] Fix | Delete
/* Specify the character encoding in which the messages from the
[88] Fix | Delete
DOMAINNAME message catalog will be returned. */
[89] Fix | Delete
extern char *bind_textdomain_codeset (const char *__domainname,
[90] Fix | Delete
const char *__codeset) __THROW;
[91] Fix | Delete
[92] Fix | Delete
[93] Fix | Delete
/* Optimized version of the function above. */
[94] Fix | Delete
#if defined __OPTIMIZE__ && !defined __cplusplus
[95] Fix | Delete
[96] Fix | Delete
/* We need NULL for `gettext'. */
[97] Fix | Delete
# define __need_NULL
[98] Fix | Delete
# include <stddef.h>
[99] Fix | Delete
[100] Fix | Delete
/* We need LC_MESSAGES for `dgettext'. */
[101] Fix | Delete
# include <locale.h>
[102] Fix | Delete
[103] Fix | Delete
/* These must be macros. Inlined functions are useless because the
[104] Fix | Delete
`__builtin_constant_p' predicate in dcgettext would always return
[105] Fix | Delete
false. */
[106] Fix | Delete
[107] Fix | Delete
# define gettext(msgid) dgettext (NULL, msgid)
[108] Fix | Delete
[109] Fix | Delete
# define dgettext(domainname, msgid) \
[110] Fix | Delete
dcgettext (domainname, msgid, LC_MESSAGES)
[111] Fix | Delete
[112] Fix | Delete
# define ngettext(msgid1, msgid2, n) dngettext (NULL, msgid1, msgid2, n)
[113] Fix | Delete
[114] Fix | Delete
# define dngettext(domainname, msgid1, msgid2, n) \
[115] Fix | Delete
dcngettext (domainname, msgid1, msgid2, n, LC_MESSAGES)
[116] Fix | Delete
[117] Fix | Delete
#endif /* Optimizing. */
[118] Fix | Delete
[119] Fix | Delete
__END_DECLS
[120] Fix | Delete
[121] Fix | Delete
#endif /* libintl.h */
[122] Fix | Delete
[123] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function