Skip to content

Instantly share code, notes, and snippets.

@rikioy
Created September 7, 2016 07:36
Show Gist options
  • Select an option

  • Save rikioy/580d59126d1ba9ca024ee010c965a7b1 to your computer and use it in GitHub Desktop.

Select an option

Save rikioy/580d59126d1ba9ca024ee010c965a7b1 to your computer and use it in GitHub Desktop.
std::string itostring(uint64_t i) {
char buffer[64] = {0};
snprintf(buffer, sizeof(buffer), "%lu", i);
return std::string(buffer);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment