summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2001-09-04 23:42:50 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2001-09-05 11:30:59 +0000
commit53305cf15fa20bba9e66475dfc049c6ed9d96c55 (patch)
tree104f5d438fc2b971aa33cbff0bb5d76ef0154a7c /perl.h
parentea7154893ee587d7e47bcebff9e70757b48a38bd (diff)
downloadperl-53305cf15fa20bba9e66475dfc049c6ed9d96c55.tar.gz
oct and hex in glorious 64 bit (with less bugs) (was Re: hex and oct again (was Re: FreeBSD MD5 crypt? Re: crypt/hex/oct and Unicode?))
Message-ID: <20010904224250.P25120@plum.flirble.org> p4raw-id: //depot/perl@11874
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/perl.h b/perl.h
index 7009f16944..8655111f0b 100644
--- a/perl.h
+++ b/perl.h
@@ -3850,6 +3850,11 @@ int flock(int fd, int op);
#define GROK_NUMERIC_RADIX(sp, send) grok_numeric_radix(sp, send)
+/* Input flags: */
+#define PERL_SCAN_ALLOW_UNDERSCORES 0x01 /* grok_??? accept _ in numbers */
+/* Output flags: */
+#define PERL_SCAN_GREATER_THAN_UV_MAX 0x02 /* should this merge with above? */
+
/* to let user control profiling */
#ifdef PERL_GPROF_CONTROL
extern void moncontrol(int);