diff options
author | Matthias Eble <psychotrahe@users.sourceforge.net> | 2007-07-06 23:03:39 +0000 |
---|---|---|
committer | Matthias Eble <psychotrahe@users.sourceforge.net> | 2007-07-06 23:03:39 +0000 |
commit | 370561d594cd5b444d8858f10baa7712bac6a534 (patch) | |
tree | 9a8d6d53a8c8dd22ffb3426586a4a75ef701f57a | |
parent | f39f01e4980ed16af70a6df3dbec493ebe814396 (diff) | |
download | monitoring-plugins-370561d594cd5b444d8858f10baa7712bac6a534.tar.gz |
Added hint to avoid using the boolean type in C as discussed on the devel list
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1748 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | doc/developer-guidelines.sgml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/developer-guidelines.sgml b/doc/developer-guidelines.sgml index 44fca243..7bfcc732 100644 --- a/doc/developer-guidelines.sgml +++ b/doc/developer-guidelines.sgml @@ -731,6 +731,10 @@ setup the tests. Run "make test" to run all the tests. <para>You should use /* */ for comments and not // as some compilers do not handle the latter form.</para> + + <para>You should also avoid using the type "bool" and its values + "true" and "false". Instead use the "int" type and the plugins' own + "TRUE"/"FALSE" values to keep the code uniformly.</para> </section> <section><title>Crediting sources</title> |