File: comparators.cpp

package info (click to toggle)
drbd-utils 9.22.0-1.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,768 kB
  • sloc: ansic: 48,975; xml: 11,553; cpp: 9,843; sh: 4,568; makefile: 1,029; perl: 353; ruby: 43
file content (6 lines) | stat: -rw-r--r-- 161 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
#include <comparators.h>

int comparators::compare_string(const std::string* key_ptr, const std::string* other_ptr)
{
    return key_ptr->compare(*other_ptr);
}