Re: Re[2]: [fpc-pascal] exceptions

2009-05-28 Thread Jonas Maebe
On 28 May 2009, at 23:18, JoshyFun wrote: Hello FPC-Pascal, Thursday, May 28, 2009, 9:58:23 PM, you wrote: RS> Shrinked down example of the program. RS> Rainer [...] RS> procedure memclr( p : pointer ; len : longint ); Aside from the socket problem, can somebody explain me this line: RS> b

Re[2]: [fpc-pascal] exceptions

2009-05-28 Thread JoshyFun
Hello FPC-Pascal, Thursday, May 28, 2009, 9:58:23 PM, you wrote: RS> Shrinked down example of the program. RS> Rainer [...] RS> procedure memclr( p : pointer ; len : longint ); RS> var x : longint; RS> begin RS> for x := 1 to len do begin RS> byte( p^ ) := 0; RS> inc( p ); RS> end; RS> end;