mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 14:12:32 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			278 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			278 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example59;
 | |
| 
 | |
| { This program demonstrates the AnsiStrLower function }
 | |
| 
 | |
| Uses sysutils;
 | |
| 
 | |
| Procedure Testit (S : Pchar);
 | |
| 
 | |
| begin
 | |
|  Writeln (S,' -> ',AnsiStrLower(S))
 | |
| end;
 | |
| 
 | |
| Begin
 | |
|   Testit('AN UPPERCASE STRING');
 | |
|   Testit('Some mixed STring');
 | |
|   Testit('a lowercase string');
 | |
| End. | 
