diff options
author | S-H-GAMELINKS <[email protected]> | 2021-06-27 17:11:24 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2021-07-11 18:26:20 +0900 |
commit | b32ae9898f0311a3755a361bc0bdcbb38f143deb (patch) | |
tree | fb416575008fc6aeaaf164e8aff9b746a1a5a4c9 /internal/string.h | |
parent | e330bbeeb1bd70180e5f6b835f2a39488e6c2d42 (diff) |
Move rb_str_escape function declaration
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/4607
Diffstat (limited to 'internal/string.h')
-rw-r--r-- | internal/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/string.h b/internal/string.h index 29213537ed..5062de4636 100644 --- a/internal/string.h +++ b/internal/string.h @@ -38,6 +38,7 @@ VALUE rb_external_str_with_enc(VALUE str, rb_encoding *eenc); VALUE rb_str_cat_conv_enc_opts(VALUE newstr, long ofs, const char *ptr, long len, rb_encoding *from, int ecflags, VALUE ecopts); VALUE rb_enc_str_scrub(rb_encoding *enc, VALUE str, VALUE repl); +VALUE rb_str_escape(VALUE str); size_t rb_str_memsize(VALUE); char *rb_str_to_cstr(VALUE str); const char *ruby_escaped_char(int c); |