Browse Source

+ Implemented int2str function

michael 27 years ago
parent
commit
b097079ea6
1 changed files with 5 additions and 0 deletions
  1. 5 0
      fcl/inc/util.inc

+ 5 - 0
fcl/inc/util.inc

@@ -0,0 +1,5 @@
+Function IntToStr (I : Longint) : String;
+
+begin
+  Str(I,Result);
+end;