Ejemplo n.º 1
0
void test_string_len() {
    T_ASSERT(RtStrLen("") == 0);
    T_ASSERT(RtStrLen("1") == 1);
    T_ASSERT(RtStrLen("12") == 2);
    T_ASSERT(RtStrLen("123") == 3);
    T_ASSERT(RtStrLen("1234") == 4);
}
Ejemplo n.º 2
0
UINTN
StrLen (
    IN CHAR16   *s1
    )
// string length
{
    return RtStrLen(s1);
}