Tool for braceless, whitespace sensitive C syntax

后端 未结 8 2426
灰色年华
灰色年华 2021-01-04 17:57

I\'m writing some C at the moment and because I like whitespace sensitive syntax, I\'d like to write it like this:

#include 

int main(void)
          


        
8条回答
  •  有刺的猬
    2021-01-04 18:24

    I don't believe such a tool exists. Tools exist to clean formatting, but the code must already be C formatted.

    I really think you should use the language as designed and learn to use braces.

提交回复
热议问题