Public Member Functions | |
| bool | operator() (const string &s1, const string &s2) const |
|
||||||||||||
|
Definition at line 122 of file modules.cpp.
00123 {
00124 char a[MAXBUF],b[MAXBUF];
00125 strcpy(a,s1.c_str());
00126 strcpy(b,s2.c_str());
00127 return (strcasecmp(a,b) == 0);
00128 }
|
1.3-rc3