glibc/tests/Standardscompliance/bz639000-Wrong-Ukrainian-currency-symbol/cursym.c
Sergey Kolosov 823c0aee76 CI Tests: add fmf test plan
Resolves: RHEL-65327
2025-01-08 19:01:11 +00:00

16 lines
334 B
C

/* taken from bz#639000 */
#include <stdio.h>
#include <locale.h>
int main()
{
struct lconv *lv;
setlocale (LC_ALL, "");
lv = localeconv();
fprintf (stdout, "Currency symbol for locale: %s\n", lv->currency_symbol);
fprintf (stdout, "Intl currency sym for locale: %s\n", lv->int_curr_symbol);
return 0;
}