diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-02-09 17:34:38 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-02-09 22:46:02 -0700 |
commit | 68b355dd7516941437134d1c22e1de0c8bf0e517 (patch) | |
tree | 45a796d724e9f212a389f2c1da4da5d1d791eaee /proto.h | |
parent | db30362b9b16c8b3b431a133169e91f19b1e38e7 (diff) | |
download | perl-68b355dd7516941437134d1c22e1de0c8bf0e517.tar.gz |
Move grok_bslash_c to dquote.c and make static
No other changes were made
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1082,9 +1082,6 @@ PERL_CALLCONV UV Perl_grok_bin(pTHX_ const char* start, STRLEN* len_p, I32* flag #define PERL_ARGS_ASSERT_GROK_BIN \ assert(start); assert(len_p); assert(flags) -PERL_CALLCONV char Perl_grok_bslash_c(pTHX_ const char source, const bool output_warning) - __attribute__warn_unused_result__; - PERL_CALLCONV UV Perl_grok_hex(pTHX_ const char* start, STRLEN* len_p, I32* flags, NV *result) __attribute__nonnull__(pTHX_1) __attribute__nonnull__(pTHX_2) @@ -5185,6 +5182,9 @@ STATIC I32 S_do_trans_simple_utf8(pTHX_ SV * const sv) #endif #if defined(PERL_IN_DQUOTE_STATIC_C) +STATIC char S_grok_bslash_c(pTHX_ const char source, const bool output_warning) + __attribute__warn_unused_result__; + STATIC bool S_grok_bslash_o(pTHX_ const char* s, UV* uv, STRLEN* len, const char** error_msg, const bool output_warning) __attribute__warn_unused_result__ __attribute__nonnull__(pTHX_1) |