Advertisement
garfield

[COD]: Colocar string em minúsculo

Feb 4th, 2013
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.21 KB | None | 0 0
  1. #define strLower(%0) \
  2.         static i, e; i = 0, e = strlen(%0); for( ; i != e; ++i) %0[i] |= (1 << 5)
  3.  
  4.  
  5.  
  6. //Testando:
  7.     new ASD[200];
  8.    
  9.     ASD = "THE BOMB HAS BEEN PLANTED";
  10.    
  11.     strLower(ASD);
  12.    
  13.     printf(ASD);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement