| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/NewChromantics/OpenSplat/OpenSplatLibrary/utils.cpp | [Back] [Original] |
#include "utils.hpp"
void CopyStringToBuffer(std::string_view input, char *dst, size_t dst_size)
{
// gr: throw?
if ( !dst )
return;
auto CopyLength = std::min( dst_size, input.length() );
for ( auto i=0; i
| Web Proxy Viewer | New URL | Original Page |