MCPcopy Create free account
hub / github.com/Xtra-Computing/thundersvm / addToBuff

Method addToBuff

src/thundersvm/util/log.cpp:924–928  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

922 }
923
924 char* Str::addToBuff(const char* str, char* buf, const char* bufLim) {
925 while ((buf < bufLim) && ((*buf = *str++) != '\0'))
926 ++buf;
927 return buf;
928 }
929
930 char* Str::clearBuff(char buff[], std::size_t lim) {
931 STRCPY(buff, "", lim);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected