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
Many of the savestack types have associated public macros, e.g. SAVEINT, SAVEVPTR, etc...
SAVESTRLEN appears to be lacking.
Core internal code currently makes use of a (lowercased) save_strlen() macro that isn't made public.
save_strlen()
I suggest renaming it to capitals without the _, SAVESTRLEN, and making it public.
_
SAVESTRLEN
(I'll probably send a PR to do this tomorrow)
The text was updated successfully, but these errors were encountered:
Expose a public SAVESTRLEN() macro
b64547f
This seems to have been forgotten in the public API, perhaps because it was added later. Fixes Perl#19165
58541fd
This seems to have been forgotten in the public API, perhaps because it was added later. Fixes #19165
Successfully merging a pull request may close this issue.
Many of the savestack types have associated public macros, e.g. SAVEINT, SAVEVPTR, etc...
SAVESTRLEN appears to be lacking.
Core internal code currently makes use of a (lowercased)
save_strlen()
macro that isn't made public.I suggest renaming it to capitals without the
_
,SAVESTRLEN
, and making it public.(I'll probably send a PR to do this tomorrow)
The text was updated successfully, but these errors were encountered: