8 lines
107 B
C
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
|