| 265 | } |
| 266 | |
| 267 | static inline int get_glob_global(void) |
| 268 | { |
| 269 | static int glob = -1; |
| 270 | |
| 271 | if (glob < 0) |
| 272 | glob = git_env_bool(GIT_GLOB_PATHSPECS_ENVIRONMENT, 0); |
| 273 | |
| 274 | return glob; |
| 275 | } |
| 276 | |
| 277 | static inline int get_noglob_global(void) |
| 278 | { |
no test coverage detected