Created
June 2, 2013 21:49
-
-
Save kitek/5695098 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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