| 38 | // Template for functions to return the larger of two values |
| 39 | template <typename T> |
| 40 | T larger(T a, T b) |
| 41 | { |
| 42 | return a > b? a : b; |
| 43 | } |
| 44 | |
| 45 | // Template specialization for returning the larger of two character arrays |
| 46 | // (such as string literals). |