int toupper()

in TAs/optee_ta/fTPM/reference/RuntimeSupport.c [53:60]


int toupper (int c)
{
    if(c >= 'a' && c <= 'z')
    {
        c += ('A' - 'a');
    }
    return c;
}