| 899 | } |
| 900 | |
| 901 | bool Str::contains(const char* str, char c) { |
| 902 | for (; *str; ++str) { |
| 903 | if (*str == c) |
| 904 | return true; |
| 905 | } |
| 906 | return false; |
| 907 | } |
| 908 | |
| 909 | char* Str::convertAndAddToBuff(std::size_t n, int len, char* buf, const char* bufLim, bool zeroPadded) { |
| 910 | char localBuff[10] = ""; |
nothing calls this directly
no outgoing calls
no test coverage detected