diff options
author | yui-knk <[email protected]> | 2024-01-05 21:34:39 +0900 |
---|---|---|
committer | Yuichiro Kaneko <[email protected]> | 2024-01-06 09:32:45 +0900 |
commit | 54a123654196d782d4ad7b9ad7750edd89c435e8 (patch) | |
tree | fa0d1b9c3c98b7a925e2d3e7b4a0665a37d095be /vm_debug.h | |
parent | 0c990994c7c61cab57c3fbbcf2d1ccb213dc8cdd (diff) |
Add ruby_debug_print functions to vm_debug.h
Diffstat (limited to 'vm_debug.h')
-rw-r--r-- | vm_debug.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vm_debug.h b/vm_debug.h index 9c7fc65f7c..d0bc81574a 100644 --- a/vm_debug.h +++ b/vm_debug.h @@ -23,8 +23,10 @@ RUBY_SYMBOL_EXPORT_BEGIN struct RNode; VALUE ruby_debug_print_value(int level, int debug_level, const char *header, VALUE v); +void ruby_debug_print_v(VALUE v); ID ruby_debug_print_id(int level, int debug_level, const char *header, ID id); struct RNode *ruby_debug_print_node(int level, int debug_level, const char *header, const struct RNode *node); +void ruby_debug_print_n(const struct RNode *node); int ruby_debug_print_indent(int level, int debug_level, int indent_level); void ruby_debug_gc_check_func(void); void ruby_set_debug_option(const char *str); |