summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-11-28 09:20:12 -0700
committerKarl Williamson <public@khwilliamson.com>2012-01-13 09:58:36 -0700
commitb2b97e77b954138ae39638e71c2a011953c04525 (patch)
tree98d6a132a021fd748eb10a7a84d2729003fcc6bc /proto.h
parent69794297b04eebfe2f6020fd71ca6b93abe77286 (diff)
downloadperl-b2b97e77b954138ae39638e71c2a011953c04525.tar.gz
regcomp.c: Add _invlist_contents() to compactly dump inversion list
This will be used in future commits for debug traces
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 9c61e73a53..b9a7a7aaf1 100644
--- a/proto.h
+++ b/proto.h
@@ -6537,6 +6537,12 @@ PERL_CALLCONV SV* Perl__core_swash_init(pTHX_ const char* pkg, const char* name,
#define PERL_ARGS_ASSERT__CORE_SWASH_INIT \
assert(pkg); assert(name); assert(listsv)
+PERL_CALLCONV SV* Perl__invlist_contents(pTHX_ SV* const invlist)
+ __attribute__warn_unused_result__
+ __attribute__nonnull__(pTHX_1);
+#define PERL_ARGS_ASSERT__INVLIST_CONTENTS \
+ assert(invlist)
+
#endif
#if defined(PERL_IN_REGCOMP_C) || defined(PERL_IN_UTF8_C)
PERL_CALLCONV void Perl__append_range_to_invlist(pTHX_ SV* const invlist, const UV start, const UV end)