| 52 | } |
| 53 | |
| 54 | static void trim_whitespace(char *s) |
| 55 | { |
| 56 | size_t len = strlen(s); |
| 57 | |
| 58 | while (len > 0 && cisspace(s[len - 1])) |
| 59 | len--; |
| 60 | s[len] = '\0'; |
| 61 | } |
| 62 | |
| 63 | const char *configvar_parse(struct configvar *cv, |
| 64 | bool early, |
no test coverage detected