I am looking for the name of the native fpc function for:

function ReplicateStr(s:string;x:Integer): String;
var
  i:Integer;
Begin
  For i:=0 to x-1 do
    Result += s;
end;


_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to