| 314 | |
| 315 | |
| 316 | zip_archive::entry const * find_entry_by_name(zip_archive const &p_archive, std::string const &p_name) |
| 317 | { |
| 318 | auto iter = p_archive.get_entries().find(normalize_path(p_name)); |
| 319 | return (iter == p_archive.get_entries().end()) ? NULL : &(iter->second); |
| 320 | } |
| 321 | |
| 322 | |
| 323 | } // namespace easysplash end |
no test coverage detected