int tolower()

in TAs/optee_ta/AuthVars/src/wolf/RuntimeSupport.c [34:41]


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