8
AleCx04
5y

School made me a stickler for the Linux kernel coding conventions in regards to the C language. And even though I shouldn't feel bothered by reading other coding styles.....i still get annoyed.

I try not to get irked cuz I find it a small thing to get annoyed at.... but i still do.....bad.

And even then i dislike how there is not padding inside of funcion parametes

void
fu(int here, int there) {}

Should be

void
fu( int here, int there ) {}

That space man...its needed.

Man this is such a small thing to be annoyed at..

Comments
  • 10
    Funny, I find that extra padding *super* annoying 🤣
    Thank goodness for modern editors and IDEs with auto-formatting!
  • 8
    No, I don't like those additional spaces. Makes those look alien to me
  • 2
    @endor @asgs 🤷‍♂️ it is what it is. It won't stop me from working on code or reading it. Just a small preference
Add Comment