Selaa lähdekoodia

+ Implemented int2str function

michael 27 vuotta sitten
vanhempi
commit
b097079ea6
1 muutettua tiedostoa jossa 5 lisäystä ja 0 poistoa
  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;