| 34 | using Poseidon::Foundation::QSort; |
| 35 | |
| 36 | static int FileTime(const char* name) |
| 37 | { |
| 38 | struct stat buf; |
| 39 | memset(&buf, 0, sizeof(buf)); |
| 40 | LocalPath(fn, name); |
| 41 | if (stat(fn, &buf) < 0) |
| 42 | { |
| 43 | return -1; |
| 44 | } |
| 45 | return buf.st_mtime; |
| 46 | } |
| 47 | |
| 48 | static RString CanonicalBankEntryName(const char* name) |
| 49 | { |