10 setlocale (LC_ALL
, "");
12 printf ("LC_MESSAGES = %s\n", setlocale (LC_MESSAGES
, NULL
));
14 catalog
= catopen ("sample", NL_CAT_LOCALE
);
15 if (catalog
== (nl_catd
) -1)
17 printf ("no catalog: %m\n");
21 printf ("%s\n", catgets(catalog
, 1, 1, "sample 1"));
22 printf ("%s\n", catgets(catalog
, 1, 2, "sample 2"));
23 printf ("%s\n", catgets(catalog
, 1, 3, "sample 3"));
24 printf ("%s\n", catgets(catalog
, 1, 4, "sample 4"));
25 printf ("%s\n", catgets(catalog
, 1, 5, "sample 5"));
26 printf ("%s\n", catgets(catalog
, 1, 6, "sample 6"));
27 printf ("%s\n", catgets(catalog
, 1, 7, "sample 7"));
33 #define TEST_FUNCTION do_test ()
34 #include "../test-skeleton.c"