Gitiles
Code Review
Sign In
gerrit.benkard.de
/
rust-samples
/
refs/heads/master
/
.
/
c
/
swap.h
blob: e908bd38aef10cf3671dc91086bc0481564f7ac9 [
file
] [
log
] [
blame
]
#include
<stddef.h>
void
swap_loop
(
char
*
__restrict a
,
char
*
__restrict b
,
size_t
len
);
void
swap_malloc
(
char
*
__restrict a
,
char
*
__restrict b
,
size_t
len
);
void
swap_alloca
(
char
*
__restrict a
,
char
*
__restrict b
,
size_t
len
);