Software:indent (Unix)
Original author(s) | David Willcox |
---|---|
Developer(s) | David Ingamells, Carlo Wood, Joseph Arceneaux, Jim Kingdon, John Bridges |
Initial release | November 1976 |
Stable release | GNU: 2.2.13
/ March 20, 2023 |
Written in | C |
Operating system | Cross-platform |
Type | source-code-reformat tool |
License | GNU: GPL-3.0-or-later[1] |
Website | GNU: gnu |
indent is a Unix utility that reformats C and C++ code in a user-defined indentation style and coding style. Support for C++ code is minimal.[2]
The original version of indent was written by David Willcox at the University of Illinois in November 1976. It was incorporated into 4.1BSD in October 1982.[3] GNU indent was first written by Jim Kingdon in 1989. The command is available as a separate package for Microsoft Windows as part of the UnxUtils collection of native Win32 ports of common GNU Unix-like utilities.[4]
Examples of usage
The following command
$ indent -st -bap -bli0 -i4 -l79 -ncs -npcs -npsl -fca -lc79 -fc1 -ts4 some_file.c
indents some_file.c
in a style resembling BSD/Allman style and writes the result to the standard output.
GNU indent
GNU indent is the GNU Project's version of indent. A different indentation style, the GNU style, is used by default.[5]
References
- ↑ GNU Savannah. "GNU indent". https://savannah.gnu.org/projects/indent. "License: GNU General Public License v3 or later"
- ↑ "indent: Indent and Format C Program Source". http://www.gnu.org/software/indent/manual/indent.html#SEC15.
- ↑ Dickey, Thomas (2017). "CINDENT - C-language formatter". https://invisible-island.net/cindent/cindent.html.
- ↑ "Native Win32 ports of some GNU utilities". http://unxutils.sourceforge.net/.
- ↑ GNU Indent Manual
External links
- GNU indent Homepage
- OpenBSD General Commands Manual –
- UniversalIndentGUI
- clang-format (an alternative to indent)
de:Astyle
Original source: https://en.wikipedia.org/wiki/Indent (Unix).
Read more |