Linux Kernel
3.7.1
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
arch
x86
boot
compressed
string.c
Go to the documentation of this file.
1
#include "
misc.h
"
2
3
int
memcmp
(
const
void
*
s1
,
const
void
*
s2
,
size_t
len)
4
{
5
u8
diff;
6
asm
(
"repe; cmpsb; setnz %0"
7
:
"=qm"
(diff),
"+D"
(s1),
"+S"
(
s2
),
"+c"
(len));
8
return
diff;
9
}
10
11
#include "../string.c"
Generated on Thu Jan 10 2013 12:54:52 for Linux Kernel by
1.8.2