Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * String To Lower (lowercase string)
- * It works great with accents
- * Created by Bruno da Silva
- * www.ips-team.blogspot.com
- */
- stringToLower(text[])
- {
- for(new i, j = strlen(text); j != i; ++i)
- {
- if((90 > text[i] > 64) || (222 > text[i] > 191)) text[i] |= 32;
- }
- return true;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement