Skip to content

Commit 526bdf1

Browse files
committed
The K&R style only really applies to indentation
1 parent 7dd4f43 commit 526bdf1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

STYLE.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,13 @@ The following are coding style guidelines for this project.
44
Code is expected to be ANSI C compatible (C89). Use `/* ... */` comments, not
55
`// ...` comments.
66

7-
The style is a variant on the K&R style.
8-
97
To automatically format all source code, install
108
[clang-format](https://clang.llvm.org/docs/ClangFormat.html) and
119
run `make format`.
1210

1311
## Blocks
1412

13+
The indentation rules are a variant on the K&R style.
1514
Tabs are used for indentation, spaces for alignment, eg.
1615
```c
1716
for (...) {

0 commit comments

Comments
 (0)