google-tests-conan-sample/includes/algos.c

8 lines
98 B
C

#include "algos.h"
void swap(char* a, char* b) {
*a ^= *b;
*b ^= *a;
*a ^= *b;
}