]> git.ipfire.org Git - thirdparty/glibc.git/blame - intl/tst-gettext2.c
Update copyright notices with scripts/update-copyrights
[thirdparty/glibc.git] / intl / tst-gettext2.c
CommitLineData
cdfb970d 1/* Test of the gettext functions.
d4697bc9 2 Copyright (C) 2000-2014 Free Software Foundation, Inc.
41bdb6e2 3 This file is part of the GNU C Library.
cdfb970d
UD
4 Contributed by Thorsten Kukuk <kukuk@suse.de> and
5 Andreas Jaeger <aj@suse.de>, 2000.
6
7 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
cdfb970d
UD
11
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 15 Lesser General Public License for more details.
cdfb970d 16
41bdb6e2 17 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
18 License along with the GNU C Library; if not, see
19 <http://www.gnu.org/licenses/>. */
cdfb970d
UD
20
21
22#include <locale.h>
23#include <libintl.h>
24#include <stdlib.h>
25#include <stdio.h>
26
111bb972
UD
27struct data_t
28{
cdfb970d
UD
29 const char *selection;
30 const char *description;
31};
32
33int data_cnt = 2;
34struct data_t strings[] =
111bb972
UD
35{
36 { "String1", N_("First string for testing.") },
37 { "String2", N_("Another string for testing.") }
cdfb970d
UD
38};
39
40const int lang_cnt = 3;
41const char *lang[] = {"lang1", "lang2", "lang3"};
42
43int
44main (void)
45{
46 int i;
47
48 /* Clean up environment. */
49 unsetenv ("LANGUAGE");
50 unsetenv ("LC_ALL");
51 unsetenv ("LC_MESSAGES");
52 unsetenv ("LC_CTYPE");
53 unsetenv ("LANG");
54 unsetenv ("OUTPUT_CHARSET");
111bb972 55
cdfb970d
UD
56 textdomain ("tstlang");
57
58 for (i = 0; i < lang_cnt; ++i)
59 {
60 int j;
61
111bb972
UD
62 if (setlocale (LC_ALL, lang[i]) == NULL)
63 setlocale (LC_ALL, "C");
cdfb970d
UD
64 bindtextdomain ("tstlang", OBJPFX "domaindir");
65
66 for (j = 0; j < data_cnt; ++j)
111bb972
UD
67 printf ("%s - %s\n", strings[j].selection,
68 gettext (strings[j].description));
cdfb970d
UD
69 }
70
71 return 0;
72}