Ruby
3.3.5p100 (2024-09-03 revision ef084cc8f4958c1b6e4ead99136631bef6d8ddba)
missing
memcmp.c
1
/* public domain rewrite of memcmp(3) */
2
3
#include "ruby/missing.h"
4
#include <stddef.h>
5
6
int
7
memcmp(
const
void
*s1,
const
void
*s2,
size_t
len
)
8
{
9
register
unsigned
char
*a = (
unsigned
char
*)s1;
10
register
unsigned
char
*b = (
unsigned
char
*)s2;
11
register
int
tmp;
12
13
for
(;
len
; --
len
) {
14
tmp = *a++ - *b++;
15
if
(tmp)
16
return
tmp;
17
}
18
return
0;
19
}
len
int len
Length of the buffer.
Definition
io.h:8
Generated by
1.12.0