Gitiles
Code Review
Sign In
gerrit.benkard.de
/
rust-samples
/
6219ab8baef80a5625086c85c060352c03b02067
/
.
/
c
/
swap.h
blob: f24d2fef73c7ada04dac85312f7dae19ac23e2ec [
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
);