1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
|
/* Message catalogs for internationalization.
Copyright (C) 1995-2025 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
#ifndef _LIBINTL_H
#define _LIBINTL_H 1
#include <locale.h>
#if (defined __APPLE__ && defined __MACH__) && 1
#include <xlocale.h>
#endif
/* 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 || (major) == 1 ? 1 : -1)
/* Resolve a platform specific conflict on DJGPP. GNU gettext takes
precedence over _conio_gettext. */
#ifdef __DJGPP__
#undef gettext
#endif
#ifdef __cplusplus
extern "C" {
#endif
/* Version number: (major<<16) + (minor<<8) + subminor */
#define LIBINTL_VERSION 0x001800
extern int libintl_version;
/* 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.
For the redirection, three mechanisms are available:
* _INTL_REDIRECT_ASM uses a function declaration with 'asm', that
specifies a different symbol at the linker level than at the C level.
* _INTL_REDIRECT_INLINE uses an inline function definition. In C,
we use 'static inline' to force the override. In C++, it is better
to use 'inline' without 'static'. But since the override is only
effective if the inlining happens, we need to use
__attribute__ ((__always_inline__)), which is supported in g++ >= 3.1
and clang. MSVC has a similar keyword __forceinline (see
<https://learn.microsoft.com/en-us/cpp/cpp/inline-functions-cpp>),
but it has an effect only when optimizing is enabled, and there is no
preprocessor macro that tells us whether optimizing is enabled.
* _INTL_REDIRECT_MACROS uses C macros.
The drawbacks are:
* _INTL_REDIRECT_ASM and _INTL_REDIRECT_INLINE don't work when the
function has an inline function definition in a system header file;
this mostly affects mingw and MSVC. In these cases,
_INTL_REDIRECT_MACROS is the only mechanism that works.
* _INTL_REDIRECT_MACROS can interfere with symbols used in structs and
classes (especially in C++, but also in C). For example, Qt has a class
with an 'asprintf' member, and our '#define asprintf libintl_asprintf'
triggers a compilation error.
* _INTL_REDIRECT_INLINE in C mode has the effect that each function's
address, such as &gettext, is different in each compilation unit.
*/
/* _INTL_FORCE_INLINE ensures inlining of a function, even when not
optimizing. */
/* Applies to: functions. */
/* Supported by g++ >= 3.1 and clang. Actually needed for g++ < 4.0. */
#if (defined __GNUC__ && __GNUC__ + (__GNUC_MINOR__ >= 1) > 3) || \
defined __clang__
#define _INTL_HAS_FORCE_INLINE
#define _INTL_FORCE_INLINE __attribute__((__always_inline__))
#else
#define _INTL_FORCE_INLINE
#endif
/* The user can define _INTL_REDIRECT_INLINE or _INTL_REDIRECT_MACROS.
If he doesn't, we choose the method. */
#if !(defined _INTL_REDIRECT_INLINE || defined _INTL_REDIRECT_MACROS)
#if defined __GNUC__ && __GNUC__ >= 2 && \
!(defined __APPLE_CC__ && __APPLE_CC__ > 1) && !defined __MINGW32__ && \
!(__GNUC__ == 2 && defined _AIX) && \
(defined __STDC__ || defined __cplusplus)
#define _INTL_REDIRECT_ASM
#else
#if defined __cplusplus && defined _INTL_HAS_FORCE_INLINE
#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
/* _INTL_MAY_RETURN_STRING_ARG(n) declares that the given function may return
its n-th argument literally. This enables GCC to warn for example about
printf (gettext ("foo %y")). */
#if ((defined __GNUC__ && __GNUC__ >= 3) || defined __clang__) && \
!(defined __APPLE_CC__ && __APPLE_CC__ > 1 && \
!(defined __clang__ && __clang__ && __clang_major__ >= 3) && \
defined __cplusplus)
#define _INTL_MAY_RETURN_STRING_ARG(n) __attribute__((__format_arg__(n)))
#else
#define _INTL_MAY_RETURN_STRING_ARG(n)
#endif
/* _INTL_ATTRIBUTE_FORMAT ((ARCHETYPE, STRING-INDEX, FIRST-TO-CHECK))
declares that the STRING-INDEXth function argument is a format string of
style ARCHETYPE, which is one of:
printf, gnu_printf
scanf, gnu_scanf,
strftime, gnu_strftime,
strfmon,
or the same thing prefixed and suffixed with '__'.
If FIRST-TO-CHECK is not 0, arguments starting at FIRST-TO_CHECK
are suitable for the format string. */
/* Applies to: functions. */
#if (defined __GNUC__ && __GNUC__ + (__GNUC_MINOR__ >= 7) > 2) || \
defined __clang__
#define _INTL_ATTRIBUTE_FORMAT(spec) __attribute__((__format__ spec))
#else
#define _INTL_ATTRIBUTE_FORMAT(spec)
#endif
/* _INTL_ATTRIBUTE_SPEC_PRINTF_STANDARD
An __attribute__ __format__ specifier for a function that takes a format
string and arguments, where the format string directives are the ones
standardized by ISO C99 and POSIX. */
/* __gnu_printf__ is supported in GCC >= 4.4. */
#if defined __GNUC__ && __GNUC__ + (__GNUC_MINOR__ >= 4) > 4
#define _INTL_ATTRIBUTE_SPEC_PRINTF_STANDARD __gnu_printf__
#else
#define _INTL_ATTRIBUTE_SPEC_PRINTF_STANDARD __printf__
#endif
/* _INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD
indicates to GCC that the function takes a format string and arguments,
where the format string directives are the ones standardized by ISO C99
and POSIX. */
#define _INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(formatstring_parameter, \
first_argument) \
_INTL_ATTRIBUTE_FORMAT((_INTL_ATTRIBUTE_SPEC_PRINTF_STANDARD, \
formatstring_parameter, first_argument))
/* _INTL_ARG_NONNULL ((N1, N2,...)) declares that the arguments N1, N2,...
must not be NULL. */
/* Applies to: functions. */
#if (defined __GNUC__ && __GNUC__ + (__GNUC_MINOR__ >= 3) > 3) || \
defined __clang__
#define _INTL_ARG_NONNULL(params) __attribute__((__nonnull__ params))
#else
#define _INTL_ARG_NONNULL(params)
#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_INLINE
extern char* libintl_gettext(const char* __msgid)
_INTL_MAY_RETURN_STRING_ARG(1);
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_MAY_RETURN_STRING_ARG(1) char* gettext(const char* __msgid) {
return libintl_gettext(__msgid);
}
#else
#ifdef _INTL_REDIRECT_MACROS
#define gettext libintl_gettext
#endif
extern char* gettext(const char* __msgid) _INTL_ASM(libintl_gettext)
_INTL_MAY_RETURN_STRING_ARG(1);
#endif
/* Look up MSGID in the DOMAINNAME message catalog for the current
LC_MESSAGES locale. */
#ifdef _INTL_REDIRECT_INLINE
extern char* libintl_dgettext(const char* __domainname, const char* __msgid)
_INTL_MAY_RETURN_STRING_ARG(2);
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_MAY_RETURN_STRING_ARG(2) char* dgettext(const char* __domainname,
const char* __msgid) {
return libintl_dgettext(__domainname, __msgid);
}
#else
#ifdef _INTL_REDIRECT_MACROS
#define dgettext libintl_dgettext
#endif
extern char* dgettext(const char* __domainname, const char* __msgid)
_INTL_ASM(libintl_dgettext) _INTL_MAY_RETURN_STRING_ARG(2);
#endif
/* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
locale. */
#ifdef _INTL_REDIRECT_INLINE
extern char* libintl_dcgettext(const char* __domainname,
const char* __msgid,
int __category) _INTL_MAY_RETURN_STRING_ARG(2);
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_MAY_RETURN_STRING_ARG(2) 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
#endif
extern char* dcgettext(const char* __domainname,
const char* __msgid,
int __category) _INTL_ASM(libintl_dcgettext)
_INTL_MAY_RETURN_STRING_ARG(2);
#endif
/* Similar to 'gettext' but select the plural form corresponding to the
number N. */
#ifdef _INTL_REDIRECT_INLINE
extern char* libintl_ngettext(const char* __msgid1,
const char* __msgid2,
unsigned long int __n)
_INTL_MAY_RETURN_STRING_ARG(1) _INTL_MAY_RETURN_STRING_ARG(2);
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_MAY_RETURN_STRING_ARG(1)
_INTL_MAY_RETURN_STRING_ARG(2) 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
#endif
extern char* ngettext(const char* __msgid1,
const char* __msgid2,
unsigned long int __n) _INTL_ASM(libintl_ngettext)
_INTL_MAY_RETURN_STRING_ARG(1) _INTL_MAY_RETURN_STRING_ARG(2);
#endif
/* Similar to 'dgettext' but select the plural form corresponding to the
number N. */
#ifdef _INTL_REDIRECT_INLINE
extern char* libintl_dngettext(const char* __domainname,
const char* __msgid1,
const char* __msgid2,
unsigned long int __n)
_INTL_MAY_RETURN_STRING_ARG(2) _INTL_MAY_RETURN_STRING_ARG(3);
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_MAY_RETURN_STRING_ARG(2)
_INTL_MAY_RETURN_STRING_ARG(3) 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
#endif
extern char* dngettext(const char* __domainname,
const char* __msgid1,
const char* __msgid2,
unsigned long int __n) _INTL_ASM(libintl_dngettext)
_INTL_MAY_RETURN_STRING_ARG(2) _INTL_MAY_RETURN_STRING_ARG(3);
#endif
/* Similar to 'dcgettext' but select the plural form corresponding to the
number N. */
#ifdef _INTL_REDIRECT_INLINE
extern char* libintl_dcngettext(const char* __domainname,
const char* __msgid1,
const char* __msgid2,
unsigned long int __n,
int __category) _INTL_MAY_RETURN_STRING_ARG(2)
_INTL_MAY_RETURN_STRING_ARG(3);
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_MAY_RETURN_STRING_ARG(2) _INTL_MAY_RETURN_STRING_ARG(
3) 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
#endif
extern char* dcngettext(const char* __domainname,
const char* __msgid1,
const char* __msgid2,
unsigned long int __n,
int __category) _INTL_ASM(libintl_dcngettext)
_INTL_MAY_RETURN_STRING_ARG(2) _INTL_MAY_RETURN_STRING_ARG(3);
#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_INLINE
extern char* libintl_textdomain(const char* __domainname);
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE char*
textdomain(const char* __domainname) {
return libintl_textdomain(__domainname);
}
#else
#ifdef _INTL_REDIRECT_MACROS
#define textdomain libintl_textdomain
#endif
extern char* textdomain(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_INLINE
extern char* libintl_bindtextdomain(const char* __domainname,
const char* __dirname);
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE char*
bindtextdomain(const char* __domainname, const char* __dirname) {
return libintl_bindtextdomain(__domainname, __dirname);
}
#else
#ifdef _INTL_REDIRECT_MACROS
#define bindtextdomain libintl_bindtextdomain
#endif
extern char* bindtextdomain(const char* __domainname, const char* __dirname)
_INTL_ASM(libintl_bindtextdomain);
#endif
#if defined _WIN32 && !defined __CYGWIN__
/* Specify that the DOMAINNAME message catalog will be found
in WDIRNAME rather than in the system locale data base. */
#ifdef _INTL_REDIRECT_INLINE
extern wchar_t* libintl_wbindtextdomain(const char* __domainname,
const wchar_t* __wdirname);
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE wchar_t*
wbindtextdomain(const char* __domainname, const wchar_t* __wdirname) {
return libintl_wbindtextdomain(__domainname, __wdirname);
}
#else
#ifdef _INTL_REDIRECT_MACROS
#define wbindtextdomain libintl_wbindtextdomain
#endif
extern wchar_t* wbindtextdomain(const char* __domainname,
const wchar_t* __wdirname)
_INTL_ASM(libintl_wbindtextdomain);
#endif
#endif
/* Specify the character encoding in which the messages from the
DOMAINNAME message catalog will be returned. */
#ifdef _INTL_REDIRECT_INLINE
extern char* libintl_bind_textdomain_codeset(const char* __domainname,
const char* __codeset);
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_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
#endif
extern char* bind_textdomain_codeset(const char* __domainname,
const char* __codeset)
_INTL_ASM(libintl_bind_textdomain_codeset);
#endif
/* Support for format strings with positions in *printf(), following the
POSIX/XSI specification.
Note: These replacements for the *printf() functions are visible only
in source files that #include <libintl.h> or #include "gettext.h".
Packages that use *printf() in source files that don't refer to _()
or gettext() but for which the format string could be the return value
of _() or gettext() need to add this #include. Oh well. */
/* Note: In C++ mode, it is not sufficient to redefine a symbol at the
preprocessor macro level, such as
#define sprintf libintl_sprintf
Some programs may reference std::sprintf after including <libintl.h>.
Therefore we must make sure that std::libintl_sprintf is defined and
identical to ::libintl_sprintf.
The user can define _INTL_CXX_NO_CLOBBER_STD_NAMESPACE to avoid this.
In such cases, they will not benefit from the overrides when using
the 'std' namespace, and they will need to do the references to the
'std' namespace *before* including <libintl.h> or "gettext.h". */
#if !1
#include <stddef.h>
#include <stdio.h>
/* Get va_list. */
#if (defined __STDC__ && __STDC__) || defined __cplusplus || defined _MSC_VER
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#if !((defined fprintf && defined _GL_STDIO_H) || \
defined GNULIB_overrides_fprintf) /* don't override gnulib */
#if defined _INTL_REDIRECT_INLINE && !(defined __MINGW32__ || defined _MSC_VER)
extern int libintl_vfprintf(FILE*, const char*, va_list)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 0) _INTL_ARG_NONNULL((1, 2));
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 3)
_INTL_ARG_NONNULL((1, 2)) int fprintf(FILE* __stream,
const char* __format,
...) {
va_list __args;
int __ret;
va_start(__args, __format);
__ret = libintl_vfprintf(__stream, __format, __args);
va_end(__args);
return __ret;
}
#elif !defined _INTL_NO_DEFINE_MACRO_FPRINTF
#if defined _INTL_REDIRECT_MACROS || defined __MINGW32__ || defined _MSC_VER
#undef fprintf
#define fprintf libintl_fprintf
#endif
extern int fprintf(FILE*, const char*, ...) _INTL_ASM(libintl_fprintf)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 3) _INTL_ARG_NONNULL((1, 2));
#if (defined _INTL_REDIRECT_MACROS || defined __MINGW32__ || \
defined _MSC_VER) && \
defined __cplusplus && !defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_fprintf;
}
#endif
#endif
#endif
#if !((defined vfprintf && defined _GL_STDIO_H) || \
defined GNULIB_overrides_vfprintf) /* don't override gnulib */
#if defined _INTL_REDIRECT_INLINE && !(defined __MINGW32__ || defined _MSC_VER)
extern int libintl_vfprintf(FILE*, const char*, va_list)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 0) _INTL_ARG_NONNULL((1, 2));
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 0)
_INTL_ARG_NONNULL((1, 2)) int vfprintf(FILE* __stream,
const char* __format,
va_list __args) {
return libintl_vfprintf(__stream, __format, __args);
}
#elif !defined _INTL_NO_DEFINE_MACRO_VFPRINTF
#if defined _INTL_REDIRECT_MACROS || defined __MINGW32__ || defined _MSC_VER
#undef vfprintf
#define vfprintf libintl_vfprintf
#endif
extern int vfprintf(FILE*, const char*, va_list) _INTL_ASM(libintl_vfprintf)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 0) _INTL_ARG_NONNULL((1, 2));
#if (defined _INTL_REDIRECT_MACROS || defined __MINGW32__ || \
defined _MSC_VER) && \
defined __cplusplus && !defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_vfprintf;
}
#endif
#endif
#endif
#if !((defined printf && defined _GL_STDIO_H) || \
defined GNULIB_overrides_printf) /* don't override gnulib */
#if defined _INTL_REDIRECT_INLINE && !(defined __MINGW32__ || defined _MSC_VER)
extern int libintl_vprintf(const char*, va_list)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(1, 0) _INTL_ARG_NONNULL((1));
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(1, 2)
_INTL_ARG_NONNULL((1)) int printf(const char* __format, ...) {
va_list __args;
int __ret;
va_start(__args, __format);
__ret = libintl_vprintf(__format, __args);
va_end(__args);
return __ret;
}
#elif !defined _INTL_NO_DEFINE_MACRO_PRINTF
#if defined _INTL_REDIRECT_MACROS || defined __MINGW32__ || defined _MSC_VER
#undef printf
#if defined __NetBSD__ || defined __BEOS__ || defined __CYGWIN__ || \
defined __MINGW32__
/* Don't break __attribute__((format(printf,M,N))).
This redefinition is only possible because the libc in NetBSD, Cygwin,
mingw does not have a function __printf__.
Alternatively, we could have done this redirection only when compiling with
__GNUC__, together with a symbol redirection:
extern int printf (const char *, ...)
__asm__ (#__USER_LABEL_PREFIX__ "libintl_printf");
But doing it now would introduce a binary incompatibility with already
distributed versions of libintl on these systems. */
#define libintl_printf __printf__
#endif
#define printf libintl_printf
#endif
extern int printf(const char*, ...) _INTL_ASM(libintl_printf)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(1, 2) _INTL_ARG_NONNULL((1));
#if (defined _INTL_REDIRECT_MACROS || defined __MINGW32__ || \
defined _MSC_VER) && \
defined __cplusplus && !defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_printf;
}
#endif
#endif
#endif
#if !((defined vprintf && defined _GL_STDIO_H) || \
defined GNULIB_overrides_vprintf) /* don't override gnulib */
#if defined _INTL_REDIRECT_INLINE && !(defined __MINGW32__ || defined _MSC_VER)
extern int libintl_vprintf(const char*, va_list)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(1, 0) _INTL_ARG_NONNULL((1));
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(1, 0)
_INTL_ARG_NONNULL((1)) int vprintf(const char* __format,
va_list __args) {
return libintl_vprintf(__format, __args);
}
#elif !defined _INTL_NO_DEFINE_MACRO_VPRINTF
#if defined _INTL_REDIRECT_MACROS || defined __MINGW32__ || defined _MSC_VER
#undef vprintf
#define vprintf libintl_vprintf
#endif
extern int vprintf(const char*, va_list) _INTL_ASM(libintl_vprintf)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(1, 0) _INTL_ARG_NONNULL((1));
#if (defined _INTL_REDIRECT_MACROS || defined __MINGW32__ || \
defined _MSC_VER) && \
defined __cplusplus && !defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_vprintf;
}
#endif
#endif
#endif
#if !((defined sprintf && defined _GL_STDIO_H) || \
defined GNULIB_overrides_sprintf) /* don't override gnulib */
#if defined _INTL_REDIRECT_INLINE && !(defined __MINGW32__ || defined _MSC_VER)
extern int libintl_vsprintf(char*, const char*, va_list)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 0) _INTL_ARG_NONNULL((1, 2));
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 3)
_INTL_ARG_NONNULL((1, 2)) int sprintf(char* __result,
const char* __format,
...) {
va_list __args;
int __ret;
va_start(__args, __format);
__ret = libintl_vsprintf(__result, __format, __args);
va_end(__args);
return __ret;
}
#elif !defined _INTL_NO_DEFINE_MACRO_SPRINTF
#if defined _INTL_REDIRECT_MACROS || defined __MINGW32__ || defined _MSC_VER
#undef sprintf
#define sprintf libintl_sprintf
#endif
extern int sprintf(char*, const char*, ...) _INTL_ASM(libintl_sprintf)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 3) _INTL_ARG_NONNULL((1, 2));
#if (defined _INTL_REDIRECT_MACROS || defined __MINGW32__ || \
defined _MSC_VER) && \
defined __cplusplus && !defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_sprintf;
}
#endif
#endif
#endif
#if !((defined vsprintf && defined _GL_STDIO_H) || \
defined GNULIB_overrides_vsprintf) /* don't override gnulib */
#if defined _INTL_REDIRECT_INLINE && !(defined __MINGW32__ || defined _MSC_VER)
extern int libintl_vsprintf(char*, const char*, va_list)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 0) _INTL_ARG_NONNULL((1, 2));
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 0)
_INTL_ARG_NONNULL((1, 2)) int vsprintf(char* __result,
const char* __format,
va_list __args) {
return libintl_vsprintf(__result, __format, __args);
}
#elif !defined _INTL_NO_DEFINE_MACRO_VSPRINTF
#if defined _INTL_REDIRECT_MACROS || defined __MINGW32__ || defined _MSC_VER
#undef vsprintf
#define vsprintf libintl_vsprintf
#endif
extern int vsprintf(char*, const char*, va_list) _INTL_ASM(libintl_vsprintf)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 0) _INTL_ARG_NONNULL((1, 2));
#if (defined _INTL_REDIRECT_MACROS || defined __MINGW32__ || \
defined _MSC_VER) && \
defined __cplusplus && !defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_vsprintf;
}
#endif
#endif
#endif
#if 1
#if !((defined snprintf && defined _GL_STDIO_H) || \
defined GNULIB_overrides_snprintf) /* don't override gnulib */
#if defined _INTL_REDIRECT_INLINE && !defined __MINGW32__
extern int libintl_vsnprintf(char*, size_t, const char*, va_list)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(3, 0) _INTL_ARG_NONNULL((3));
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(3, 4)
_INTL_ARG_NONNULL((3)) int snprintf(char* __result,
size_t __maxlen,
const char* __format,
...) {
va_list __args;
int __ret;
va_start(__args, __format);
__ret = libintl_vsnprintf(__result, __maxlen, __format, __args);
va_end(__args);
return __ret;
}
#elif !defined _INTL_NO_DEFINE_MACRO_SNPRINTF
#if defined _INTL_REDIRECT_MACROS || defined __MINGW32__
#undef snprintf
#define snprintf libintl_snprintf
#endif
extern int snprintf(char*, size_t, const char*, ...) _INTL_ASM(libintl_snprintf)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(3, 4) _INTL_ARG_NONNULL((3));
#if (defined _INTL_REDIRECT_MACROS || defined __MINGW32__) && \
defined __cplusplus && !defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_snprintf;
}
#endif
#endif
#endif
#if !((defined vsnprintf && defined _GL_STDIO_H) || \
defined GNULIB_overrides_vsnprintf) /* don't override gnulib */
#if defined _INTL_REDIRECT_INLINE && !defined __MINGW32__
extern int libintl_vsnprintf(char*, size_t, const char*, va_list)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(3, 0) _INTL_ARG_NONNULL((3));
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(3, 0)
_INTL_ARG_NONNULL((3)) int vsnprintf(char* __result,
size_t __maxlen,
const char* __format,
va_list __args) {
return libintl_vsnprintf(__result, __maxlen, __format, __args);
}
#elif !defined _INTL_NO_DEFINE_MACRO_VSNPRINTF
#if defined _INTL_REDIRECT_MACROS || defined __MINGW32__
#undef vsnprintf
#define vsnprintf libintl_vsnprintf
#endif
extern int vsnprintf(char*, size_t, const char*, va_list)
_INTL_ASM(libintl_vsnprintf) _INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(3, 0)
_INTL_ARG_NONNULL((3));
#if (defined _INTL_REDIRECT_MACROS || defined __MINGW32__) && \
defined __cplusplus && !defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_vsnprintf;
}
#endif
#endif
#endif
#endif
#if 1
#if !((defined asprintf && defined _GL_STDIO_H) || \
defined GNULIB_overrides_asprintf) /* don't override gnulib */
#if defined _INTL_REDIRECT_INLINE && !defined __MINGW32__
extern int libintl_vasprintf(char**, const char*, va_list)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 0) _INTL_ARG_NONNULL((1, 2));
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 3)
_INTL_ARG_NONNULL((1, 2)) int asprintf(char** __result,
const char* __format,
...) {
va_list __args;
int __ret;
va_start(__args, __format);
__ret = libintl_vasprintf(__result, __format, __args);
va_end(__args);
return __ret;
}
#elif !defined _INTL_NO_DEFINE_MACRO_ASPRINTF
#if defined _INTL_REDIRECT_MACROS || defined __MINGW32__
#undef asprintf
#define asprintf libintl_asprintf
#endif
extern int asprintf(char**, const char*, ...) _INTL_ASM(libintl_asprintf)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 3) _INTL_ARG_NONNULL((1, 2));
#if (defined _INTL_REDIRECT_MACROS || defined __MINGW32__) && \
defined __cplusplus && !defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_asprintf;
}
#endif
#endif
#endif
#if !((defined vasprintf && defined _GL_STDIO_H) || \
defined GNULIB_overrides_vasprintf) /* don't override gnulib */
#if defined _INTL_REDIRECT_INLINE && !defined __MINGW32__
extern int libintl_vasprintf(char**, const char*, va_list)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 0) _INTL_ARG_NONNULL((1, 2));
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 0)
_INTL_ARG_NONNULL((1, 2)) int vasprintf(char** __result,
const char* __format,
va_list __args) {
return libintl_vasprintf(__result, __format, __args);
}
#elif !defined _INTL_NO_DEFINE_MACRO_VASPRINTF
#if defined _INTL_REDIRECT_MACROS || defined __MINGW32__
#undef vasprintf
#define vasprintf libintl_vasprintf
#endif
extern int vasprintf(char**, const char*, va_list) _INTL_ASM(libintl_vasprintf)
_INTL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(2, 0) _INTL_ARG_NONNULL((1, 2));
#if (defined _INTL_REDIRECT_MACROS || defined __MINGW32__) && \
defined __cplusplus && !defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_vasprintf;
}
#endif
#endif
#endif
#endif
#if 1
#if defined _INTL_REDIRECT_INLINE && !defined __MINGW32__
extern int libintl_vfwprintf(FILE*, const wchar_t*, va_list)
_INTL_ARG_NONNULL((1, 2));
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_ARG_NONNULL((1, 2)) int fwprintf(FILE* __stream,
const wchar_t* __format,
...) {
va_list __args;
int __ret;
va_start(__args, __format);
__ret = libintl_vfwprintf(__stream, __format, __args);
va_end(__args);
return __ret;
}
#elif !defined _INTL_NO_DEFINE_MACRO_FWPRINTF
#if defined _INTL_REDIRECT_MACROS || defined __MINGW32__
#undef fwprintf
#define fwprintf libintl_fwprintf
#endif
extern int fwprintf(FILE*, const wchar_t*, ...) _INTL_ASM(libintl_fwprintf)
_INTL_ARG_NONNULL((1, 2));
#if (defined _INTL_REDIRECT_MACROS || defined __MINGW32__) && \
defined __cplusplus && !defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_fwprintf;
}
#endif
#endif
#if defined _INTL_REDIRECT_INLINE && !defined __MINGW32__
extern int libintl_vfwprintf(FILE*, const wchar_t*, va_list)
_INTL_ARG_NONNULL((1, 2));
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_ARG_NONNULL((1, 2)) int vfwprintf(FILE* __stream,
const wchar_t* __format,
va_list __args) {
return libintl_vfwprintf(__stream, __format, __args);
}
#elif !defined _INTL_NO_DEFINE_MACRO_VFWPRINTF
#if defined _INTL_REDIRECT_MACROS || defined __MINGW32__
#undef vfwprintf
#define vfwprintf libintl_vfwprintf
#endif
extern int vfwprintf(FILE*, const wchar_t*, va_list)
_INTL_ASM(libintl_vfwprintf) _INTL_ARG_NONNULL((1, 2));
#if (defined _INTL_REDIRECT_MACROS || defined __MINGW32__) && \
defined __cplusplus && !defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_vfwprintf;
}
#endif
#endif
#if defined _INTL_REDIRECT_INLINE && !defined __MINGW32__
extern int libintl_vwprintf(const wchar_t*, va_list) _INTL_ARG_NONNULL((1));
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_ARG_NONNULL((1)) int wprintf(const wchar_t* __format, ...) {
va_list __args;
int __ret;
va_start(__args, __format);
__ret = libintl_vwprintf(__format, __args);
va_end(__args);
return __ret;
}
#elif !defined _INTL_NO_DEFINE_MACRO_WPRINTF
#if defined _INTL_REDIRECT_MACROS || defined __MINGW32__
#undef wprintf
#define wprintf libintl_wprintf
#endif
extern int wprintf(const wchar_t*, ...) _INTL_ASM(libintl_wprintf)
_INTL_ARG_NONNULL((1));
#if (defined _INTL_REDIRECT_MACROS || defined __MINGW32__) && \
defined __cplusplus && !defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_wprintf;
}
#endif
#endif
#if defined _INTL_REDIRECT_INLINE && !defined __MINGW32__
extern int libintl_vwprintf(const wchar_t*, va_list) _INTL_ARG_NONNULL((1));
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_ARG_NONNULL((1)) int vwprintf(const wchar_t* __format,
va_list __args) {
return libintl_vwprintf(__format, __args);
}
#elif !defined _INTL_NO_DEFINE_MACRO_VWPRINTF
#if defined _INTL_REDIRECT_MACROS || defined __MINGW32__
#undef vwprintf
#define vwprintf libintl_vwprintf
#endif
extern int vwprintf(const wchar_t*, va_list) _INTL_ASM(libintl_vwprintf)
_INTL_ARG_NONNULL((1));
#if (defined _INTL_REDIRECT_MACROS || defined __MINGW32__) && \
defined __cplusplus && !defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_vwprintf;
}
#endif
#endif
#if defined _INTL_REDIRECT_INLINE && !defined __MINGW32__
extern int libintl_vswprintf(wchar_t*, size_t, const wchar_t*, va_list)
_INTL_ARG_NONNULL((1, 3));
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_ARG_NONNULL((1, 3)) int swprintf(wchar_t* __result,
size_t __maxlen,
const wchar_t* __format,
...) {
va_list __args;
int __ret;
va_start(__args, __format);
__ret = libintl_vswprintf(__result, __maxlen, __format, __args);
va_end(__args);
return __ret;
}
#elif !defined _INTL_NO_DEFINE_MACRO_SWPRINTF
#if defined _INTL_REDIRECT_MACROS || defined __MINGW32__
#undef swprintf
#define swprintf libintl_swprintf
#endif
extern int swprintf(wchar_t*, size_t, const wchar_t*, ...)
_INTL_ASM(libintl_swprintf) _INTL_ARG_NONNULL((1, 3));
#if (defined _INTL_REDIRECT_MACROS || defined __MINGW32__) && \
defined __cplusplus && !defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_swprintf;
}
#endif
#endif
#if defined _INTL_REDIRECT_INLINE && !defined __MINGW32__
extern int libintl_vswprintf(wchar_t*, size_t, const wchar_t*, va_list)
_INTL_ARG_NONNULL((1, 3));
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE
_INTL_ARG_NONNULL((1, 3)) int vswprintf(wchar_t* __result,
size_t __maxlen,
const wchar_t* __format,
va_list __args) {
return libintl_vswprintf(__result, __maxlen, __format, __args);
}
#elif !defined _INTL_NO_DEFINE_MACRO_VSWPRINTF
#if defined _INTL_REDIRECT_MACROS || defined __MINGW32__
#undef vswprintf
#define vswprintf libintl_vswprintf
#endif
extern int vswprintf(wchar_t*, size_t, const wchar_t*, va_list)
_INTL_ASM(libintl_vswprintf) _INTL_ARG_NONNULL((1, 3));
#if (defined _INTL_REDIRECT_MACROS || defined __MINGW32__) && \
defined __cplusplus && !defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_vswprintf;
}
#endif
#endif
#endif
#endif
/* Support for retrieving the name of a locale_t object. */
#if 0
#ifndef GNULIB_defined_newlocale /* don't override gnulib */
#ifdef _INTL_REDIRECT_INLINE
extern locale_t libintl_newlocale(int, const char*, locale_t);
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE locale_t
newlocale(int __category_mask, const char* __name, locale_t __base) {
return libintl_newlocale(__category_mask, __name, __base);
}
#elif !defined _INTL_NO_DEFINE_MACRO_NEWLOCALE
#ifdef _INTL_REDIRECT_MACROS
#undef newlocale
#define newlocale libintl_newlocale
#endif
extern locale_t newlocale(int, const char*, locale_t)
_INTL_ASM(libintl_newlocale);
#if defined _INTL_REDIRECT_MACROS && defined __cplusplus && \
!defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_newlocale;
}
#endif
#endif
#endif
#ifndef GNULIB_defined_duplocale /* don't override gnulib */
#ifdef _INTL_REDIRECT_INLINE
extern locale_t libintl_duplocale(locale_t);
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE locale_t
duplocale(locale_t __locale) {
return libintl_duplocale(__locale);
}
#elif !defined _INTL_NO_DEFINE_MACRO_DUPLOCALE
#ifdef _INTL_REDIRECT_MACROS
#undef duplocale
#define duplocale libintl_duplocale
#endif
extern locale_t duplocale(locale_t) _INTL_ASM(libintl_duplocale);
#if defined _INTL_REDIRECT_MACROS && defined __cplusplus && \
!defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_duplocale;
}
#endif
#endif
#endif
#ifndef GNULIB_defined_freelocale /* don't override gnulib */
#ifdef _INTL_REDIRECT_INLINE
extern void libintl_freelocale(locale_t);
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE void
freelocale(locale_t __locale) {
libintl_freelocale(__locale);
}
#elif !defined _INTL_NO_DEFINE_MACRO_FREELOCALE
#ifdef _INTL_REDIRECT_MACROS
#undef freelocale
#define freelocale libintl_freelocale
#endif
extern void freelocale(locale_t) _INTL_ASM(libintl_freelocale);
#if defined _INTL_REDIRECT_MACROS && defined __cplusplus && \
!defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_freelocale;
}
#endif
#endif
#endif
#endif
/* Support for the locale chosen by the user. */
#if (defined __APPLE__ && defined __MACH__) || defined _WIN32 || \
defined __CYGWIN__
#ifndef GNULIB_defined_setlocale /* don't override gnulib */
#ifdef _INTL_REDIRECT_INLINE
extern char* libintl_setlocale(int, const char*);
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE char*
setlocale(int __category, const char* __locale) {
return libintl_setlocale(__category, __locale);
}
#elif !defined _INTL_NO_DEFINE_MACRO_SETLOCALE
#ifdef _INTL_REDIRECT_MACROS
#undef setlocale
#define setlocale libintl_setlocale
#endif
extern char* setlocale(int, const char*) _INTL_ASM(libintl_setlocale);
#if defined _INTL_REDIRECT_MACROS && defined __cplusplus && \
!defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_setlocale;
}
#endif
#endif
#endif
#if 1
/* Declare newlocale() only if the system headers define the 'locale_t' type. */
#if !(defined __CYGWIN__ && !defined LC_ALL_MASK)
#ifdef _INTL_REDIRECT_INLINE
extern locale_t libintl_newlocale(int, const char*, locale_t);
#ifndef __cplusplus
static
#endif
inline _INTL_FORCE_INLINE locale_t
newlocale(int __category_mask, const char* __name, locale_t __base) {
return libintl_newlocale(__category_mask, __name, __base);
}
#elif !defined _INTL_NO_DEFINE_MACRO_NEWLOCALE
#ifdef _INTL_REDIRECT_MACROS
#undef newlocale
#define newlocale libintl_newlocale
#endif
extern locale_t newlocale(int, const char*, locale_t)
_INTL_ASM(libintl_newlocale);
#if defined _INTL_REDIRECT_MACROS && defined __cplusplus && \
!defined _INTL_CXX_NO_CLOBBER_STD_NAMESPACE
namespace std {
using ::libintl_newlocale;
}
#endif
#endif
#endif
#endif
#endif
/* Support for relocatable packages. */
/* Sets the original and the current installation prefix of the package.
Relocation simply replaces a pathname starting with the original prefix
by the corresponding pathname with the current prefix instead. Both
prefixes should be directory names without trailing slash (i.e. use ""
instead of "/"). */
#define libintl_set_relocation_prefix libintl_set_relocation_prefix
extern void libintl_set_relocation_prefix(const char* orig_prefix,
const char* curr_prefix);
#ifdef __cplusplus
}
#endif
#endif /* libintl.h */
|