Re: [fpc-pascal] StrToQWord seems missing

2006-01-03 Thread Florian Klaempfl
Vincent Snijders wrote: Vincent Snijders wrote: Hi, I want to covert a string to qword, but strtoqword seems to be missing? Attached is a patch to implement StrToQWord and related functions and a test program. If you make test programs, please ensure that they can run automated: i.e. il

Re: [fpc-pascal] StrToQWord seems missing

2006-01-03 Thread Vincent Snijders
Vincent Snijders wrote: Hi, I want to covert a string to qword, but strtoqword seems to be missing? Attached is a patch to implement StrToQWord and related functions and a test program. Vincent. Index: objpas/sysutils/sysstr.inc ===

[fpc-pascal] StrToQWord seems missing

2006-01-03 Thread Vincent Snijders
Hi, I want to covert a string to qword, but strtoqword seems to be missing? I could use StrToInt64 like in the program below, but I am worried, that if I recompile the RTL with rangechecks on, StrToInt64 won't be abel to handle these high qword values. Will there be a StrToQWord in the future,