mirror of
https://github.com/ada-dmitry/TMP_C712.git
synced 2026-09-24 09:10:16 +00:00
13 lines
118 B
C
13 lines
118 B
C
#include <stdio.h>
|
|
|
|
void swap(int *px, int *py)
|
|
{
|
|
int t;
|
|
|
|
t = *px;
|
|
*px = *py;
|
|
*py = t;
|
|
|
|
return;
|
|
}
|