Lines Matching defs:pos
27 size_t pos;
30 test_assert(uni_utf8_partial_strlen_n(input, 1, &pos) == 0 && pos == 0);
31 test_assert(uni_utf8_partial_strlen_n(input, 2, &pos) == 1 && pos == 2);
32 test_assert(uni_utf8_partial_strlen_n(input, 3, &pos) == 1 && pos == 2);
33 test_assert(uni_utf8_partial_strlen_n(input, 4, &pos) == 2 && pos == 4);
34 test_assert(uni_utf8_partial_strlen_n(input, 5, &pos) == 3 && pos == 5);
35 test_assert(uni_utf8_partial_strlen_n(input, 6, &pos) == 4 && pos == 6);