Kaynağa Gözat

+ Implemented int2str function

michael 27 yıl önce
ebeveyn
işleme
b097079ea6
1 değiştirilmiş dosya ile 5 ekleme ve 0 silme
  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;