3 * This file contains static inline functions that are related to
4 * parsing double-quotish expressions, but are used in more than
7 * It is currently #included by regcomp.c and toke.c.
11 - regcurly - a little FSA that accepts {\d+,?\d*}
12 Pulled from regcomp.c.
15 /* embed.pl doesn't yet know how to handle static inline functions, so
16 manually decorate it here with gcc-style attributes.
18 PERL_STATIC_INLINE I32
19 regcurly(register const char *s)
20 __attribute__warn_unused_result__
22 __attribute__nonnull__(1);
24 PERL_STATIC_INLINE I32
25 regcurly(register const char *s)
46 * c-indentation-style: bsd
51 * ex: set ts=8 sts=4 sw=4 noet: