Autor: aitor
Data:
Dla: dng
Temat: Re: [DNG] vdev status update in daedalus
Hi,
On 21/7/25 12:22, Didier Kryn wrote:
> The second fashion is the style imposed in nearly all projects,
> including the Linux kernel.
I'm referring to namely functions. Linux kernel does use the second
fashion, but namely functions are a exception.
Example:
static void push_pad (void)
{
while (offset & 3) {
putchar(0);
offset++;
}
}
Cheers,
Aitor.