Skip to content
Snippets Groups Projects
Commit cedf6b4b authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

8-bit memcmp()

parent df104514
No related branches found
No related tags found
No related merge requests found
#include "portable.h"
#include <ac/string.h>
/*
* Memory Compare
*/
int
memcmp(const void *v1, const void *v2, int n)
{
if (n != 0) {
register const unsigned char *s1=v1, *s2=v2;
do {
if (*s1++ != *s2++)
return (*--s1 - *--s2);
} while (--n != 0);
}
return (0);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment