MCPcopy Create free account
hub / github.com/csmith-project/csmith / is_space

Method is_space

src/StringUtils.cpp:50–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48}
49
50bool
51StringUtils::is_space(const char c)
52{
53 return ((c == ' ') ||
54 (c == '\t') ||
55 (c == '\n'));
56}
57
58void
59StringUtils::ignore_spaces(const string &str, size_t &pos)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected