| 928 | } |
| 929 | |
| 930 | char* Str::clearBuff(char buff[], std::size_t lim) { |
| 931 | STRCPY(buff, "", lim); |
| 932 | ELPP_UNUSED(lim); // For *nix we dont have anything using lim in above STRCPY macro |
| 933 | return buff; |
| 934 | } |
| 935 | |
| 936 | /// @brief Converst wchar* to char* |
| 937 | /// NOTE: Need to free return value after use! |
nothing calls this directly
no outgoing calls
no test coverage detected