This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
regcomp.c: Make invlist_search() usable from re_comp.c
authorKarl Williamson <public@khwilliamson.com>
Mon, 18 Jun 2012 17:51:43 +0000 (11:51 -0600)
committerKarl Williamson <public@khwilliamson.com>
Thu, 2 Aug 2012 15:24:52 +0000 (09:24 -0600)
commitce057c8e04ce0eed4d066b6d25c366b68ec55107
treea34ca29f2cb8a794752a650071c45189a35660b0
parent8b312c40887a546e5b64c68725d4232ebd3e5eb2
regcomp.c: Make invlist_search() usable from re_comp.c

This was a static function which I couldn't get to be callable from the
debugging version of regcomp.c.  This makes it public, but known only
in the regcomp.c source file.  It changes the name to begin with an
underscore so that if someone cheats by adding preprocessor #defines,
they still have to call it with the name that convention indicates is a
private function.
embed.fnc
embed.h
proto.h
regcomp.c