| 94 | } |
| 95 | |
| 96 | static void |
| 97 | cf_entry(char *key, char *val) |
| 98 | { |
| 99 | char *dot = strchr(key, '.'); |
| 100 | if (!dot) |
| 101 | cf_entry_toplevel(key, val); |
| 102 | else |
| 103 | { |
| 104 | *dot++ = 0; |
| 105 | cf_entry_compound(key, dot, val); |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | static bool |
| 110 | parse_ugid(const char *src, int *dest) |
no test coverage detected
searching dependent graphs…