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

Method empty_line

src/SimpleDeltaSequence.cpp:120–127  ·  view source on GitHub ↗

* */

Source from the content-addressed store, hash-verified

118 *
119 */
120bool
121SimpleDeltaSequence::empty_line(const std::string &line)
122{
123 if (line.empty())
124 return true;
125 size_t found = line.find_first_not_of("\t\n ");
126 return (found == string::npos);
127}
128
129void
130SimpleDeltaSequence::init_sequence()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected