| 2718 | } |
| 2719 | |
| 2720 | int SystemTools::Strucmp(char const* l, char const* r) |
| 2721 | { |
| 2722 | int lc; |
| 2723 | int rc; |
| 2724 | do { |
| 2725 | lc = kwsysString_tolower(*l++); |
| 2726 | rc = kwsysString_tolower(*r++); |
| 2727 | } while (lc == rc && lc); |
| 2728 | return lc - rc; |
| 2729 | } |
| 2730 | |
| 2731 | // return file's modified time |
| 2732 | long int SystemTools::ModifiedTime(std::string const& filename) |
nothing calls this directly
no test coverage detected