| 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); |
nothing calls this directly
no outgoing calls
no test coverage detected