/localedata/ |
A D | tst-mbswcs1.c | 24 #define show(expr, nexp, wcexp) \ macro 54 show (mbrtowc (&wc, (const char *) buf + 0, 1, &state), 1, 37); in do_test() 55 show (mbrtowc (&wc, (const char *) buf + 1, 1, &state), -2, 37); in do_test() 56 show (mbrtowc (&wc, (const char *) buf + 2, 3, &state), 2, 8364); in do_test() 57 show (mbrtowc (&wc, (const char *) buf + 4, 1, &state), -2, 8364); in do_test() 58 show (mbrtowc (&wc, (const char *) buf + 5, 1, &state), 1, 955); in do_test() 59 show (mbrtowc (&wc, (const char *) buf + 5, 1, &state), -1, 955); in do_test()
|
A D | tst-mbswcs2.c | 24 #define show(expr, nexp, wcexp, end) \ macro 57 show (mbsnrtowcs (&wc, &src, 1, 1, &state), 1, 37, buf + 1); in do_test() 58 show (mbsnrtowcs (&wc, &src, 3, 1, &state), 1, 8364, buf + 4); in do_test() 59 show (mbsnrtowcs (&wc, &src, 1, 1, &state), 0, 8364, buf + 5); in do_test() 60 show (mbsnrtowcs (&wc, &src, 1, 1, &state), 1, 955, buf + 6); in do_test()
|
A D | tst-mbswcs5.c | 24 #define show(expr, nexp, bufexp) \ macro 61 show (wcrtomb (dst, *src++, &state), 1, buf + 1); in do_test() 62 show (wcrtomb (dst, *src++, &state), 3, buf + 4); in do_test() 63 show (wcrtomb (dst, *src++, &state), 2, buf + 6); in do_test() 64 show (wcrtomb (dst, *src, &state), 1, buf + 7); in do_test()
|
A D | tst-mbswcs3.c | 24 #define show(expr, nexp, srcexp, bufexp) \ macro 62 show (wcsrtombs (dst, &src, 1, &state), 1, srcbuf + 1, buf + 1); in do_test() 63 show (wcsrtombs (dst, &src, 1, &state), 0, srcbuf + 1, buf + 1); in do_test() 64 show (wcsrtombs (dst, &src, 4, &state), 3, srcbuf + 2, buf + 4); in do_test() 65 show (wcsrtombs (dst, &src, 2, &state), 2, srcbuf + 3, buf + 6); in do_test()
|
A D | tst-mbswcs4.c | 24 #define show(expr, nexp, wcexp, end) \ macro 57 show (mbsrtowcs (&wc, &src, 1, &state), 1, 37, buf + 1); in do_test() 58 show (mbsrtowcs (&wc, &src, 1, &state), 1, 8364, buf + 4); in do_test() 59 show (mbsrtowcs (&wc, &src, 1, &state), 1, 955, buf + 6); in do_test()
|
A D | README | 49 as an input file for `localedef'. It is rather there to show the
|