int toupper()

in TAs/optee_ta/AuthVars/src/wolf/RuntimeSupport.c [43:50]


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