summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-11-25 12:59:51 -0700
committerKarl Williamson <public@khwilliamson.com>2012-01-13 09:58:34 -0700
commitb6a0ff336ac042af856687d8dad55d9515a4779b (patch)
tree45ff59545500422aa22d95e70bcd912b9aa1ef3d /proto.h
parentd5e82ecc1467ae1fcabb72eea508b3cf6727d00a (diff)
downloadperl-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.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/proto.h b/proto.h
index e7ec1548de..c4dc4b326c 100644
--- a/proto.h
+++ b/proto.h
@@ -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)