1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-05 17:23:15 +02:00

api: add function string_parse_size

This commit is contained in:
Sébastien Helleu
2022-09-25 10:53:37 +02:00
parent be6a29a596
commit 4d74a89cfc
32 changed files with 566 additions and 1 deletions
+20
View File
@@ -448,6 +448,25 @@ weechat_ruby_api_string_format_size (VALUE class, VALUE size)
API_RETURN_STRING_FREE(result);
}
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)
{
@@ -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);