28 #ifndef __TERRALIB_COMMON_INTERNAL_COMPARATORS_H    29 #define __TERRALIB_COMMON_INTERNAL_COMPARATORS_H    97         return (strcmp(f, s) < 0 ? 
true : 
false);
   103 #endif  // __TERRALIB_COMMON_INTERNAL_COMPARATORS_H bool operator()(const T &f, const T &s) const 
It compares two NULL terminated C-strings. 
 
It implements several compare functions. 
 
bool operator()(const T *f, const T *s) const 
It compares two NULL terminated C-strings. 
 
bool operator()(const char *f, const char *s) const 
It compares two NULL terminated C-strings.