Преглед на файлове

* Added copy,length and setlength

git-svn-id: trunk@8306 -
michael преди 18 години
родител
ревизия
287c262d10
променени са 1 файла, в които са добавени 6 реда и са изтрити 0 реда
  1. 6 0
      rtl/inc/system.fpd

+ 6 - 0
rtl/inc/system.fpd

@@ -51,3 +51,9 @@ Procedure Write (Args : Arguments);
 Procedure Writeln (Args : Arguments);
 Procedure Write (Var F : Text; Args : Arguments);
 Procedure WriteLn (Var F : Text; Args : Arguments);
+Function Copy(S : AStringType; Index,Count : Integer) : String;
+Function Copy(A : DynArrayType; Index,Count : Integer) : DynArray;
+Procedure SetLength(Var S : AStringType; Len : Integer);
+Procedure SetLength(Var A : DynArrayType; Len : Integer);
+Function Length(S : AStringType) : Integer;
+Function Length(A : DynArrayType) : Integer;