Re: [fpc-pascal]CardinalToStr

2003-09-15 Thread Peter Vreman
At 21:51 14-9-2003, you wrote: Hi, Has FPC functions for the cardinal type like IntToStr? The snippet below produces quiet understandably -2147483647 instead of 2147483649. program hasCardinalToStr; const c2 = Cardinal($8001); begin writeln(IntToStr(c2)); end. Cardinal/Int64 constants only

[fpc-pascal]CardinalToStr

2003-09-14 Thread Vincent Snijders
Hi, Has FPC functions for the cardinal type like IntToStr? The snippet below produces quiet understandably -2147483647 instead of 2147483649. program hasCardinalToStr; const c2 = Cardinal($8001); begin writeln(IntToStr(c2)); end. Regards, Vincent. __