#ifndef __MATHTOOL_H__ #define __MATHTOOL_H__ #pragma once #include<math.h> #define SWAP(a,b) {int t;t=a;a=b;b=t;} #ifdef __cplusplus extern "C" { #endif void bubble(int*,int); #ifdef __cplusplus } #endif #endif