I found a couple of small things a little unclear in style manual page.
For example:


int     lflag
int     *rflag
int     sflag
int     from_remote
char    **blist
int     *blist_size
int      blist_addrs
char    ***boof

or with spaces


int lflag
int *rflag
int sflag
int from_remote
char **blist
int *blist_size
int  blist_addrs
char ***boof


Should it be done like this?


int     lflag
int    *rflag
int     sflag
int     from_remote
char  **blist
int    *blist_size
int     blist_addrs
char ***boof

Or some other way?
Manual was a bit unclear about variable declarations all by themselves
or stuff like ***boof in subs

Thanks
Chris

Reply via email to