* Inline wrapper to make sure the compiler resolves strlen() on literals at * compile time. */
| 777 | * compile time. |
| 778 | */ |
| 779 | static inline int is_hfs_dot_str(const char *path, const char *needle) |
| 780 | { |
| 781 | return is_hfs_dot_generic(path, needle, strlen(needle)); |
| 782 | } |
| 783 | |
| 784 | int is_hfs_dotgit(const char *path) |
| 785 | { |
no test coverage detected