2025-07-26 20:04:50 -07:00

8 lines
107 B
C

#ifndef SWAP_H
#define SWAP_H
void int_swap(int* a, int* b);
void float_swap(float* a, float* b);
#endif