You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#define _BSD_SOURCE
|
|
|
#include <string.h>
|
|
|
#include <strings.h>
|
|
|
|
|
|
int bcmp(const void *s1, const void *s2, size_t n)
|
|
|
{
|
|
|
return memcmp(s1, s2, n);
|
|
|
}
|
|
|
|