* Inline helper to make sure compiler resolves strlen() on literals at * compile time. */
| 1511 | * compile time. |
| 1512 | */ |
| 1513 | static inline int is_ntfs_dot_str(const char *name, const char *dotgit_name, |
| 1514 | const char *dotgit_ntfs_shortname_prefix) |
| 1515 | { |
| 1516 | return is_ntfs_dot_generic(name, dotgit_name, strlen(dotgit_name), |
| 1517 | dotgit_ntfs_shortname_prefix); |
| 1518 | } |
| 1519 | |
| 1520 | int is_ntfs_dotgitmodules(const char *name) |
| 1521 | { |
no test coverage detected