diff options
author | Nicholas Clark <nick@ccl4.org> | 2001-09-04 23:42:50 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-05 11:30:59 +0000 |
commit | 53305cf15fa20bba9e66475dfc049c6ed9d96c55 (patch) | |
tree | 104f5d438fc2b971aa33cbff0bb5d76ef0154a7c /perl.h | |
parent | ea7154893ee587d7e47bcebff9e70757b48a38bd (diff) | |
download | perl-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.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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); |