18.07.2012, 19:15
Esse ant caps lock converte as letras para minusculas quando digitadas em caps lock '-'
Mas с esta funcionando quais as possiveis causas?
Mas с esta funcionando quais as possiveis causas?
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;
}