diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-11-25 12:59:51 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2012-01-13 09:58:34 -0700 |
commit | b6a0ff336ac042af856687d8dad55d9515a4779b (patch) | |
tree | 45ff59545500422aa22d95e70bcd912b9aa1ef3d /proto.h | |
parent | d5e82ecc1467ae1fcabb72eea508b3cf6727d00a (diff) | |
download | perl-b6a0ff336ac042af856687d8dad55d9515a4779b.tar.gz |
regcomp.c: Add _invlist_populate_swatch()
This function will be used in future commits
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -6561,6 +6561,12 @@ PERL_CALLCONV void Perl__invlist_invert_prop(pTHX_ SV* const invlist) #define PERL_ARGS_ASSERT__INVLIST_INVERT_PROP \ assert(invlist) +PERL_CALLCONV void Perl__invlist_populate_swatch(pTHX_ SV* const invlist, const UV start, const UV end, U8* swatch) + __attribute__nonnull__(pTHX_1) + __attribute__nonnull__(pTHX_4); +#define PERL_ARGS_ASSERT__INVLIST_POPULATE_SWATCH \ + assert(invlist); assert(swatch) + PERL_CALLCONV void Perl__invlist_subtract(pTHX_ SV* const a, SV* const b, SV** result) __attribute__nonnull__(pTHX_1) __attribute__nonnull__(pTHX_2) |