| 285 | } |
| 286 | |
| 287 | static inline int get_icase_global(void) |
| 288 | { |
| 289 | static int icase = -1; |
| 290 | |
| 291 | if (icase < 0) |
| 292 | icase = git_env_bool(GIT_ICASE_PATHSPECS_ENVIRONMENT, 0); |
| 293 | |
| 294 | return icase; |
| 295 | } |
| 296 | |
| 297 | static int get_global_magic(int element_magic) |
| 298 | { |
no test coverage detected