/
githubmirror
/
glibc
Обзор
Документация
Войти
/
githubmirror
/
glibc
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
glibc-2.32
stdlib/testmb2.c
31 строка
543 B
Paul Eggert
Fix spellings of contributor names in comments and doc
23 авг 2019, 23:11
23 авг 2019, 23:11
e6855a3
Код
Авторство
О чём код?
/* Test case by Miloslav Trmač <mitr@volny.cz>. */ #include <locale.h> #include <stdint.h> #include <stdlib.h> #include <stdio.h> int main (void) { wchar_t wc; if (setlocale (LC_CTYPE, "de_DE.UTF-8") == NULL) { puts ("setlocale failed"); return 1; } if (mbtowc (&wc, "\xc3\xa1", MB_CUR_MAX) != 2 || wc != 0xE1) { puts ("1st mbtowc failed"); return 1; } if (mbtowc (&wc, "\xc3\xa1", SIZE_MAX) != 2 || wc != 0xE1) { puts ("2nd mbtowc failed"); return 1; } return 0; }