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

Method int2str

src/StringUtils.cpp:189–195  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

187}
188
189std::string
190StringUtils::int2str(int i)
191{
192 ostringstream oss;
193 oss << i;
194 return oss.str();
195}
196
197INT64
198StringUtils::str2longlong(const std::string &s)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected