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);