Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 284a9742c96b8da89060c813826bb7c7371c6d54 https://github.com/Perl/perl5/commit/284a9742c96b8da89060c813826bb7c7371c6d54 Author: Karl Williamson <k...@cpan.org> Date: 2022-07-09 (Sat, 09 Jul 2022)
Changed paths: M perl.h Log Message: ----------- perl.h: Add %format strings for 32 bit quantities In order to portably print a variable declared as I32 or U32, it is usually cast to (IV) or (UV) and then the %Ivdf, etc format is used. We can avoid needing these casts by creating formats for just the I32 and U32 variables, which is what this commit does.