| StarStr Function | 
Unit
QESBPCSConvert
Declaration
Function StarStr(const N: LongWord): string;
Description
Also See: FillStr
| Parameters | 
| N | the length of the resultant string, ie the number of stars. | 
Category
Extra String Handling RoutinesImplementation
 
| function StarStr (const N: LongWord): string;
begin
     Result := FillStr ('*', N);
End; | 
|  |