diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-06-18 11:38:09 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-06-18 11:38:09 +0300 |
commit | 2474c2ae94d686e6ef58c5811897adc7f1bc098c (patch) | |
tree | 2cdd3f9ce6b220664afc599c9062d51fe626a859 /CODECONVENTIONS.md | |
parent | 92d95cc9d30ec2bacb39bc63dabed309cb4f8636 (diff) | |
download | micropython-2474c2ae94d686e6ef58c5811897adc7f1bc098c.tar.gz micropython-2474c2ae94d686e6ef58c5811897adc7f1bc098c.zip |
CODECONVENTIONS.md: Header files no longer follow Plan 9 conventions.
Diffstat (limited to 'CODECONVENTIONS.md')
-rw-r--r-- | CODECONVENTIONS.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/CODECONVENTIONS.md b/CODECONVENTIONS.md index 5aed89ae88..1af06b7e67 100644 --- a/CODECONVENTIONS.md +++ b/CODECONVENTIONS.md @@ -33,9 +33,8 @@ Braces: closing brace. Header files: -- Try to stick to the Plan 9 header style, where header files do not - include other header files. -- Don't protect a header file from multiple inclusion with #if directives. +- Header files should be protected from multiple inclusion with #if + directives. See an existing header for naming convention. Type names and declarations: - When defining a type, put '_t' after it. |