Re: [fpc-pascal] errno codes fpOpen

2007-11-09 Thread Jonas Maebe
On 08 Nov 2007, at 20:43, afpTeam wrote: I'm maybe lost in the doc searches, but is there a reference explaining the extended err codes for fpOpen and friends? I could not find one. They are documented in the man pages of the *nix functions you are calling (man open), and the actual value

Re: [fpc-pascal] errno codes fpOpen

2007-11-09 Thread Marco van de Voort
> On 08 Nov 2007, at 20:43, afpTeam wrote: > > > I'm maybe lost in the doc searches, but is there a reference > > explaining the > > extended err codes for fpOpen and friends? > > I could not find one. > > They are documented in the man pages of the *nix functions you are > calling (man open)

Re: Re: [fpc-pascal] errno codes fpOpen

2007-11-09 Thread afpTeam
On 08 Nov 2007, at 20:43, afpTeam wrote: I'm maybe lost in the doc searches, but is there a reference explaining the extended err codes for fpOpen and friends? I could not find one. They are documented in the man pages of the *nix functions you are calling (man open), and the actual value

[fpc-pascal] Heaptrace and generics

2007-11-09 Thread bartek
Hi, I am playing with generics around. I have implemented two simple Lists. A array based TList and a double linked TLinkedList. I have also written a test program to test these. Here comes the interesting part. The test program runs flawlessy, but compiled with -gh for heaptrace or -gv for va

[fpc-pascal] Have description of FPC regular expressions syntax ?

2007-11-09 Thread Andrey Gusev
From where i can fetch precise description of regular expressions syntax, that implementer by FPC regexpr.pp module ? ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] CSV via PCRE

2007-11-09 Thread S. Fisher
Fields are separated by commas, but if a field is surrounded by double quotes it can contain commas---in fact, can contain any byte whatsoever; double quotes (") within the field must be doubled, just as single quotes within a Pascal string are doubled. All we need in order to parse a csv record