Re: [PHP-DEV] [C] struct, function pointers question

2001-09-02 Thread Zeev Suraski
At 20:41 02-09-01, Jeroen van Wolffelaar wrote: >Hi, > >I'm sure there's some simple (stupid?) error, which an experienced >C-programmer can see immediately... But I don't. > > > You're missing a variable name (you only put a type), and the line is not > > in the beginning of a code block (there's

Re: [PHP-DEV] [C] struct, function pointers question

2001-09-02 Thread Jeroen van Wolffelaar
Hi, I'm sure there's some simple (stupid?) error, which an experienced C-programmer can see immediately... But I don't. > You're missing a variable name (you only put a type), and the line is not > in the beginning of a code block (there's a statement before it). php_randgen_entry is (supposed

Re: [PHP-DEV] [C] struct, function pointers question

2001-09-02 Thread Zeev Suraski
You're missing a variable name (you only put a type), and the line is not in the beginning of a code block (there's a statement before it). Zeev At 19:35 02-09-01, [EMAIL PROTECTED] wrote: >Hi, > >I've got certain way to do something, but can't get it to compile. This >relevant source is attach