mirror of
https://github.com/ada-dmitry/TMP_C712.git
synced 2026-09-25 17:50:19 +00:00
upgrade
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
#include <stdio.h>
|
||||
|
||||
void swap(int *px, int *py)
|
||||
{
|
||||
int t;
|
||||
|
||||
t = *px;
|
||||
*px = *py;
|
||||
*py = t;
|
||||
|
||||
return;
|
||||
}
|
||||
Reference in New Issue
Block a user