libspf2
1.2.11
Main Page
Data Structures
Files
File List
Globals
src
libreplace
memcmp.c
Go to the documentation of this file.
1
#warning "Sorry, you will have to find a working memcmp on your own"
2
3
#include "config.h"
4
#include <sys/types.h>
5
6
inline
int
7
rpl_memcmp(
b1
,
b2
,
len
)
8
void *
b1
;
9
void
*
b2
;
10
size_t
len
;
11
{
12
return
memcmp(b1, b2, len);
13
}
len
size_t len
Definition:
memcmp.c:10
b1
int void * b1
Definition:
memcmp.c:8
b2
void * b2
Definition:
memcmp.c:9
Generated by
1.8.5