diff options
author | Alejandro Lazaro <virtualroot@users.noreply.github.com> | 2023-09-01 17:50:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-01 17:50:26 +0200 |
commit | b8a3b9aaf37fc62079b4e9d921a6007845d3ef03 (patch) | |
tree | 5ed5ad8c9ce99f0fd6b4b8299505bba53883b5df /docs | |
parent | db77001f27575a1c2e8723b1257a91423867171d (diff) | |
download | bfs-b8a3b9aaf37fc62079b4e9d921a6007845d3ef03.tar.xz |
bfs uses the C17 standard version
`bfs` uses C17 since 3.0
Diffstat (limited to 'docs')
-rw-r--r-- | docs/HACKING.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/HACKING.md b/docs/HACKING.md index d129a28..0763fda 100644 --- a/docs/HACKING.md +++ b/docs/HACKING.md @@ -17,7 +17,7 @@ This enables machine processing of license information based on the SPDX License Implementation -------------- -`bfs` is written in [C](https://en.wikipedia.org/wiki/C_(programming_language)), specifically [C11](https://en.wikipedia.org/wiki/C11_(C_standard_revision)). +`bfs` is written in [C](https://en.wikipedia.org/wiki/C_(programming_language)), specifically [C17](https://en.wikipedia.org/wiki/C17_(C_standard_revision)). You can get a feel for the coding style by skimming the source code. [`main.c`](/src/main.c) contains an overview of the rest of source files. A quick summary: |