blob: ba1f38147c53b48e41be8cd62a172698dd742d8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Program Example60;
{ This program demonstrates the AnsiStrUpper function }
Uses sysutils;
Procedure Testit (S : Pchar);
begin
Writeln (S,' -> ',AnsiStrUpper(S))
end;
Begin
Testit('AN UPPERCASE STRING');
Testit('Some mixed STring');
Testit('a lowercase string');
End.
|