int tolower()

in TAs/optee_ta/fTPM/reference/RuntimeSupport.c [44:51]


int tolower (int c)
{
    if(c >= 'A' && c <= 'Z')
    {
        c -= ('A' - 'a');
    }
    return c;
}