Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
git-mirror
/
glibc
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security
Insights
Files
1267f93
aout
argp
assert
bare
bits
catgets
conf
conform
crypt
csu
ctype
debug
dirent
dlfcn
elf
gmon
gnulib
grp
hesiod
hurd
iconv
iconvdata
include
inet
intl
.cvsignore
Depend
Makefile
Versions
bindtextdom.c
dcgettext.c
dcigettext.c
dcngettext.c
dgettext.c
dngettext.c
explodename.c
finddomain.c
gettext.c
gettext.h
gettextP.h
hash-string.h
l10nflist.c
libintl.h
loadinfo.h
loadmsgcat.c
locale.alias
localealias.c
ngettext.c
plural.c
plural.y
po2test.sed
textdomain.c
translit.po
tst-gettext.c
tst-gettext.sh
tst-ngettext.c
tst-translit.c
tst-translit.sh
io
libio
linuxthreads
linuxthreads_db
locale
localedata
login
mach
malloc
manual
math
misc
nis
nscd
nss
po
posix
pwd
resolv
resource
rpm
rt
scripts
setjmp
shadow
signal
socket
soft-fp
stdio-common
stdio
stdlib
streams
string
sunrpc
sysdeps
sysvipc
termios
time
timezone
wcsmbs
wctype
.cvsignore
BUGS
CONFORMANCE
COPYING
COPYING.LIB
ChangeLog
ChangeLog.1
ChangeLog.10
ChangeLog.2
ChangeLog.3
ChangeLog.4
ChangeLog.5
ChangeLog.6
ChangeLog.7
ChangeLog.8
ChangeLog.9
FAQ
FAQ.in
INSTALL
INTERFACE
Make-dist
MakeTAGS
Makeconfig
Makefile
Makefile.in
Makerules
NAMESPACE
NEWS
NOTES
PROJECTS
README
README-alpha
README.libm
README.template
Rules
Versions.def
abi-tags
aclocal.m4
config-name.in
config.h.in
config.make.in
configure
configure.in
extra-lib.mk
glibcbug.in
o-iterator.mk
shlib-versions
test-skeleton.c
version.h
Breadcrumbs
glibc
/
intl
/
tst-ngettext.c
Blame
Blame
Latest commit
History
History
65 lines (53 loc) · 1.88 KB
Breadcrumbs
glibc
/
intl
/
tst-ngettext.c
Top
File metadata and controls
Code
Blame
65 lines (53 loc) · 1.88 KB
Raw
/* Test of the ngettext functions. Copyright (C) 2000 Free Software Foundation, Inc. Contributed by Ulrich Drepper <drepper@cygnus.com>, 2000. The GNU C Library 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 of the License, or (at your option) any later version. The GNU C Library 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 the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include <langinfo.h> #include <libintl.h> #include <locale.h> #include <stdio.h> #include <stdlib.h> #include <string.h> int main (void) { const char *strs[2] = { "singular", "plural" }; unsigned long int i; int res = 0; /* We don't want any translation here. */ setenv ("LANGUAGE", "C", 1); unsetenv ("OUTPUT_CHARSET"); for (i = 0; i < 30; ++i) { char *tr; tr = ngettext (strs[0], strs[1], i); #define TEST \ do \ if (tr != strs[i != 1]) \ { \ if (strcmp (tr, strs[i != 1]) == 0) \ printf ("%lu: correct string, wrong pointer (%s)\n", i, tr); \ else \ printf ("%lu: wrong result (%s)\n", i, tr); \ res = 1; \ } \ while (0) TEST; tr = dngettext ("messages", strs[0], strs[1], i); TEST; tr = dcngettext ("messages", strs[0], strs[1], i, LC_MESSAGES); TEST; } return res; }
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
You can’t perform that action at this time.