MCPcopy Create free account
hub / github.com/Kitware/CMake / cmStrToLongLong

Function cmStrToLongLong

Source/cmStringAlgorithms.cxx:216–222  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

214}
215
216bool cmStrToLongLong(char const* str, long long* value)
217{
218 errno = 0;
219 char* endp;
220 *value = strtoll(str, &endp, 10);
221 return (*endp == '\0') && (endp != str) && (errno == 0);
222}
223
224bool cmStrToLongLong(std::string const& str, long long* value)
225{

Callers 2

testStringAlgorithmsFunction · 0.85
HandleReadCommandFunction · 0.85

Calls 1

c_strMethod · 0.80

Tested by 1

testStringAlgorithmsFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…