| 228 | |
| 229 | #if !defined(DAS_NO_FILEIO) |
| 230 | static bool endsWithExt ( const string & s, const char * suf ) { |
| 231 | size_t n = strlen(suf); |
| 232 | return s.size() >= n && memcmp(s.data() + s.size() - n, suf, n) == 0; |
| 233 | } |
| 234 | #endif |
| 235 | |
| 236 | ModuleInfo FsFileAccess::getModuleInfo ( const string & req, const string & from ) const { |
no test coverage detected