summaryrefslogtreecommitdiff
path: root/src/plugins/ruby
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2022-09-25 10:53:37 +0200
committerSébastien Helleu <flashcode@flashtux.org>2022-09-27 15:50:43 +0200
commit4d74a89cfcdce4d9207f51c786a2a1fc278c5a11 (patch)
tree57dad8d63de8a0bf1b5f5e6e13d57982da431601 /src/plugins/ruby
parentbe6a29a596b5da3be4c00943cd5bdceabd5159c5 (diff)
downloadweechat-4d74a89cfcdce4d9207f51c786a2a1fc278c5a11.zip
api: add function string_parse_size
Diffstat (limited to 'src/plugins/ruby')
-rw-r--r--src/plugins/ruby/weechat-ruby-api.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/plugins/ruby/weechat-ruby-api.c b/src/plugins/ruby/weechat-ruby-api.c
index 80acd781d..a1a8edf05 100644
--- a/src/plugins/ruby/weechat-ruby-api.c
+++ b/src/plugins/ruby/weechat-ruby-api.c
@@ -449,6 +449,25 @@ weechat_ruby_api_string_format_size (VALUE class, VALUE size)
}
static VALUE
+weechat_ruby_api_string_parse_size (VALUE class, VALUE size)
+{
+ char *c_size;
+ unsigned long long value;
+
+ API_INIT_FUNC(1, "string_parse_size", API_RETURN_LONG(0));
+ if (NIL_P (size))
+ API_WRONG_ARGS(API_RETURN_LONG(0));
+
+ Check_Type (size, T_STRING);
+
+ c_size = StringValuePtr (size);
+
+ value = weechat_string_parse_size (c_size);
+
+ API_RETURN_LONG(value);
+}
+
+static VALUE
weechat_ruby_api_string_color_code_size (VALUE class, VALUE string)
{
char *c_string;
@@ -6562,6 +6581,7 @@ weechat_ruby_api_init (VALUE ruby_mWeechat)
API_DEF_FUNC(string_has_highlight_regex, 2);
API_DEF_FUNC(string_mask_to_regex, 1);
API_DEF_FUNC(string_format_size, 1);
+ API_DEF_FUNC(string_parse_size, 1);
API_DEF_FUNC(string_color_code_size, 1);
API_DEF_FUNC(string_remove_color, 2);
API_DEF_FUNC(string_is_command_char, 1);