Skip to content

Instantly share code, notes, and snippets.

@kitek
Created June 2, 2013 21:49
Show Gist options
  • Save kitek/5695098 to your computer and use it in GitHub Desktop.
Save kitek/5695098 to your computer and use it in GitHub Desktop.
ZEND_API int zend_binary_strcmp(const char *s1, uint len1, const char *s2, uint len2) /* {{{ */
{
int retval;
if (s1 == s2) {
return 0;
}
retval = memcmp(s1, s2, MIN(len1, len2));
if (!retval) {
return (len1 - len2);
} else {
return retval;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment