Created
          June 10, 2014 02:21 
        
      - 
      
 - 
        
Save cynx/8f84c3cdcead13f23c65 to your computer and use it in GitHub Desktop.  
    C function to convert string to lower case
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* convert C to lower case | |
| int lcase (int c) | |
| { | |
| if (c >= 'A' && C <= 'Z') | |
| retunr c + 'a' - 'A'; | |
| else | |
| return c; | |
| } | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment