Check if glob pattern is something else besides literal and suffix.
assert(isGenericGlob("lib*.so")); assert(isGenericGlob("*dir[0-9]")); assert(!isGenericGlob("")); assert(!isGenericGlob("Makefile")); assert(!isGenericGlob("*.bmp"));
See Implementation
Check if glob pattern is something else besides literal and suffix.