[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: const char* typedefs
- From: Sean Conner <sean@...>
- Date: Tue, 6 Feb 2018 13:41:05 -0500
It was thus said that the Great Pierre Chapuis once stated:
> On Tue, Feb 6, 2018, at 19:00, Daurnimator wrote:
>
> > - I'm not concerned about line length very much. I can fit 3 120 column
> > terminals side by side on my screen...
>
> You are lucky. I just checked and I can fit 190 columns total
> on my screen.
422 at work ... about 180 at home.
> That being said, I agree with not using typedef here. If types
> are too long to fit on a single line, just use more lines, for instance
> putting the return type on its own line like in KNF.
Or each parameter on its own line:
int dump_memorys(
char *dest,
size_t dsize,
void const *data,
size_t size,
size_t amount,
size_t offset
)
-spc (Who likes vertically aligned code ... )