Updated: October 28, 2024 |
Safely compare two strings
#include <qh/string.h>
int qh_strcmp(const char *str1, const char *str2)
The qh_strcmp() function compares the string that str1 points to the one that str2 points to. A NULL argument is valid and compares as smaller to a non-NULL string and as equal to another NULL string.