Look for a POSIX group with the given name (e.g., "[:^alpha:]")
| 1630 | |
| 1631 | // Look for a POSIX group with the given name (e.g., "[:^alpha:]") |
| 1632 | static const UGroup* LookupPosixGroup(const StringPiece& name) { |
| 1633 | return LookupGroup(name, posix_groups, num_posix_groups); |
| 1634 | } |
| 1635 | |
| 1636 | static const UGroup* LookupPerlGroup(const StringPiece& name) { |
| 1637 | return LookupGroup(name, perl_groups, num_perl_groups); |
no test coverage detected