Paul Slootman wrote:
On Sat 27 Nov 2004, John E. Malmberg wrote:
A static data structure is guaranteed to be initialised to zero...
Ok.
Shouldn't it more correctly be:
const struct sum_struct null_num = {0, 0, 0, 0, 0, NULL};
Perhaps more readable, but in no way more correct.
Putting the const q
On Saturday 27 November 2004 13:32, Tony Mobily wrote:
> This should make it possible for me and Max to modify files on the
> remote server OR on the local file system, knowing that the server will
> always have the latest version of every file.
>
You probably wanna check out Unison to do this. Se
On Sat 27 Nov 2004, John E. Malmberg wrote:
> In the module generator.c, there is a static struct sum_struct null_sum
> that is not initialized by any way that I can determine in the routine
> write_sum_head.
A static data structure is guaranteed to be initialised to zero...
> Shouldn't it mor