We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
h3ToString
to solve - SymbolixAU/h3lib#6
Remove call to h3ToString() and write our own version
h3ToString()
SEXP h3ToSexpString(H3Index h3) { char str[17]; //h3ToString(h3, str, sizeof(str)); int res = snprintf(str, sizeof(str), "%" PRIx64, h3); return Rf_mkChar(str); }
The text was updated successfully, but these errors were encountered:
sprintf
replacing sprintf #27
d20ea53
No branches or pull requests
to solve - SymbolixAU/h3lib#6
Remove call to
h3ToString()
and write our own versionThe text was updated successfully, but these errors were encountered: