Update cstr_helper.c

Fixing indentation
This commit is contained in:
Michael Tryby
2019-04-16 15:54:50 -04:00
parent 2d74851635
commit 9224ac4f09

View File

@@ -51,8 +51,8 @@ bool cstr_validate_id(const char *element_id)
bool cstr_isnullterm(const char *source)
// Determines if the string passed is null terminated or not
{
if (strchr(source, '\0'))
return true;
else
return false;
if (strchr(source, '\0'))
return true;
else
return false;
}