Example: Creating TRUE or FALSE Test Comparison that Uses Boolean Logic
This example is a TRUE or FALSE test comparison that uses Boolean logic:
/* IsStringBlank has a BOOL return type. It will always return either * TRUE or FALSE */ if ( IsStringBlank( szString) ) { statement; }