Explorar o código

+ Implemented int2str function

michael %!s(int64=27) %!d(string=hai) anos
pai
achega
b097079ea6
Modificáronse 1 ficheiros con 5 adicións e 0 borrados
  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;