2020-10-05 09:21:23 -05:00
|
|
|
# indent
|
|
|
|
|
|
|
|
> Change the appearance of a C/C++ program by inserting or deleting whitespace.
|
2025-03-26 02:30:50 +02:00
|
|
|
> More information: <https://www.gnu.org/software/indent/manual/indent/Option-Summary.html>.
|
2020-10-05 09:21:23 -05:00
|
|
|
|
|
|
|
- Format C/C++ source according to the Linux style guide, automatically back up the original files, and replace with the indented versions:
|
|
|
|
|
2025-03-26 02:30:50 +02:00
|
|
|
`indent {{[-linux|--linux-style]}} {{path/to/source.c}} {{path/to/another_source.c}}`
|
2020-10-05 09:21:23 -05:00
|
|
|
|
|
|
|
- Format C/C++ source according to the GNU style, saving the indented version to a different file:
|
|
|
|
|
2025-03-26 02:30:50 +02:00
|
|
|
`indent {{[-gnu|--gnu-style]}} {{path/to/source.c}} -o {{path/to/indented_source.c}}`
|
2020-10-05 09:21:23 -05:00
|
|
|
|
2021-05-20 16:13:41 -04:00
|
|
|
- Format C/C++ source according to the style of Kernighan & Ritchie (K&R), no tabs, 3 spaces per indent, and wrap lines at 120 characters:
|
2020-10-05 09:21:23 -05:00
|
|
|
|
2025-03-26 02:30:50 +02:00
|
|
|
`indent {{[-kr|--k-and-r-style]}} {{[-il|--indent-level]}}3 {{[-nut|--no-tabs]}} {{[-l|--line-length]}}120 {{path/to/source.c}} -o {{path/to/indented_source.c}}`
|