MCPcopy Create free account
hub / github.com/ElementsProject/lightning / trim_whitespace

Function trim_whitespace

common/configvar.c:54–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52}
53
54static 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
63const char *configvar_parse(struct configvar *cv,
64 bool early,

Callers 1

configvar_parseFunction · 0.85

Calls 1

cisspaceFunction · 0.85

Tested by

no test coverage detected