blob: 95bf3c8c57bcad6c11f0a47b4ea1b0bc65225505 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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.
|