2数の内容を入れ換えます。
/* lswap.c */ #include "longint.h" void lswap(LINT *a, LINT *b) { LINT t; t = *a; *a = *b; *b = t; return; }