anti caps lock
#2

pawn Код:
stock lowercase( text[ ] )
{
    for( new i; i < strlen( text ); i++ )
    {
        if( text[ i ] != 0x20 && ( text[ i ] > 0x40 || text[ i ] < 0x5B ) ) text[ i ] += 0x20;
    }
    return text;
}

ASCII


This will convert any upper case characters to lower case, Not tested.
Reply


Messages In This Thread
anti caps lock - by Face9000 - 22.01.2011, 10:07
Re: anti caps lock - by JamesC - 22.01.2011, 10:54
Re: anti caps lock - by Face9000 - 22.01.2011, 11:11
Re: anti caps lock - by Face9000 - 22.01.2011, 15:40

Forum Jump:


Users browsing this thread: 1 Guest(s)