Format: AllC/C++CSSTextshell script Advanced Search
300: #define min(a,b) (( (a) < (b) )? (a): (b)) 301: #define SWAP(type,x,y) { type z = (x); (x) = (y); (y) = z; } 302: