VAR
s: String ;
BEGIN
- s := LongIntegerToString(int, width, ' ', TRUE, 10, FALSE) ;
- writeString(cid, s) ;
- s := KillString(s)
+ s := LongIntegerToString (int, width, ' ', int < 0, 10, FALSE) ;
+ writeString (cid, s) ;
+ s := KillString (s)
END WriteInt ;
VAR
s: String ;
BEGIN
- s := IntegerToString(int, width, ' ', TRUE, 10, FALSE) ;
- writeString(cid, s) ;
- s := KillString(s)
+ s := IntegerToString (int, width, ' ', int < 0, 10, FALSE) ;
+ writeString (cid, s) ;
+ s := KillString (s)
END WriteInt ;
VAR
s: String ;
BEGIN
- s := IntegerToString(int, width, ' ', TRUE, 10, FALSE) ;
- writeString(cid, s) ;
- s := KillString(s)
+ s := IntegerToString (int, width, ' ', int < 0, 10, FALSE) ;
+ writeString (cid, s) ;
+ s := KillString (s)
END WriteInt ;
VAR
s: String ;
BEGIN
- s := IntegerToString(int, 0, ' ', TRUE, 10, FALSE) ;
- CopyOut(str, s) ;
- s := KillString(s)
+ s := IntegerToString (int, 0, ' ', int < 0, 10, FALSE) ;
+ CopyOut (str, s) ;
+ s := KillString (s)
END IntToStr ;