Searched refs:test_iconv (Results 1 – 1 of 1) sorted by relevance
/glibc-2.36/iconv/ |
D | tst-iconv-opt.c | 38 test_iconv (const char *to, const char *from, char *input, size_t exp_in, in test_iconv() function 131 test_iconv ("ASCII", "UTF-8", ascii, strlen (ascii), 0, ascii, 0); in do_test() 132 test_iconv ("ASCII//", "UTF-8", ascii, strlen (ascii), 0, ascii, 0); in do_test() 133 test_iconv ("ASCII//TRANSLIT", "UTF-8", ascii, strlen (ascii), 0, ascii, 0); in do_test() 134 test_iconv ("ASCII//TRANSLIT//", "UTF-8", ascii, strlen (ascii), 0, ascii, in do_test() 136 test_iconv ("ASCII//IGNORE", "UTF-8", ascii, strlen (ascii), 0, ascii, 0); in do_test() 137 test_iconv ("ASCII//IGNORE//", "UTF-8", ascii, strlen (ascii), 0, ascii, 0); in do_test() 143 test_iconv ("ASCII", "UTF-8", utf8, strlen (u2a), (size_t) -1, u2a, EILSEQ); in do_test() 146 test_iconv ("ASCII//TRANSLIT", "UTF-8", utf8, strlen (utf8), 2, u2a_translit, in do_test() 150 test_iconv ("ASCII//IGNORE", "UTF-8", utf8, strlen (utf8), (size_t) -1, in do_test() [all …]
|