Definition at line 138 of file dc_string.f90.
 
◆ clower()
  
  
      
        
          | subroutine dc_string::tolower::clower  | 
          ( | 
          character(len = *), intent(inout)  | 
          ch | ) | 
           | 
         
       
   | 
  
private   | 
  
 
Definition at line 1368 of file dc_string.f90.
 1373     character(len = *), 
intent(inout):: ch
  1374     integer:: i, lch, idx
  1378       idx = ichar(ch(i:i))
  1379       if (65 <= idx .and. idx <= 90) 
then  1380         ch(i:i)=char(idx + 32)
  
 
 
The documentation for this interface was generated from the following file: