void swap()
in
rc4.c [3:7]
5
lines of code
1
McCabe index (conditional complexity)
void swap(uint8_t *a, uint8_t *b) { uint8_t temp = *a; *a = *b; *b = temp; }