diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-11-07 14:05:25 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-11-07 14:05:25 +0000 |
commit | 12e9c124f1a94b176ea78903408ad28f79c267c6 (patch) | |
tree | 79ba16ce300fc0068fb1d3ea8b8a2e4cc63e6ad1 /mathoms.c | |
parent | 6f9b16a7d2fe9614c783e2d5785df2cd8d7921a0 (diff) | |
download | perl-12e9c124f1a94b176ea78903408ad28f79c267c6.tar.gz |
The rarely used lcfirst and ucfirst share almost all their code.
Merge the two as pp_ucfirst.
p4raw-id: //depot/perl@26035
Diffstat (limited to 'mathoms.c')
-rw-r--r-- | mathoms.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1015,6 +1015,11 @@ PP(pp_dorassign) return pp_defined(); } +PP(pp_lcfirst) +{ + return pp_ucfirst(); +} + U8 * Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv) { |