Document STREQ_NULLABLE and STRNEQ_NULLABLE

This commit is contained in:
Guido Günther 2011-10-06 13:32:49 +02:00
parent b59bb93129
commit 3addd15195
2 changed files with 13 additions and 0 deletions

View File

@ -496,6 +496,13 @@ following semantically named macros
- To avoid having to check if a or b are NULL:
STREQ_NULLABLE(a, b)
STRNEQ_NULLABLE(a, b)

View File

@ -585,6 +585,12 @@
<li><p>For strict equality of a prefix:</p> <li><p>For strict equality of a prefix:</p>
<pre> <pre>
STRPREFIX(a,b) STRPREFIX(a,b)
</pre>
</li>
<li><p>To avoid having to check if a or b are NULL:</p>
<pre>
STREQ_NULLABLE(a, b)
STRNEQ_NULLABLE(a, b)
</pre> </pre>
</li> </li>
</ul> </ul>