Просмотр исходного кода

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
Matthias Eble 18 лет назад
Родитель
Сommit
370561d594
1 измененных файлов с 4 добавлено и 0 удалено
  1. 4 0
      doc/developer-guidelines.sgml

+ 4 - 0
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>