/* CSE 333 Su12 lecture 12 demo: compare_problem/compare.h */ /* Gribble/Perkins */ // definition of comp template without implementation #ifndef _COMPARE_H_ #define _COMPARE_H_ template int comp(const T& a, const T& b); #endif // COMPARE_H_