home *** CD-ROM | disk | FTP | other *** search
- {$B+}
-
- unit StrnU;
-
- interface
- function Strng( Lngth: integer; Ch: char): string;
-
- implementation
-
- function Strng;
- var Temp: string;
- I: integer;
- begin
- Temp := '';
- if (Lngth < 255) and (Lngth > 0) then
- begin
- Temp[0] := chr(Lngth);
- FillChar(Temp[1],Lngth,Ch);
- end;
- Strng := Temp;
- end;
-
- end.
-