00001 #ifndef DEV_W3_ORG__2001_BLINDFOLD_SRC_EQSTR_H
00002 #define DEV_W3_ORG__2001_BLINDFOLD_SRC_EQSTR_H
00003
00004 extern "C" {
00005 #include <string.h>
00006 }
00007 struct EqStr
00008 {
00009 bool operator()(const char* s1, const char* s2) const
00010 {
00011 return strcmp(s1, s2) == 0;
00012 }
00013 };
00014
00015
00016 #endif // DEV_W3_ORG__2001_BLINDFOLD_SRC_EQSTR_H