summaryrefslogtreecommitdiff
path: root/src/plugins/tcl
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2018-04-07 13:20:58 +0200
committerSébastien Helleu <flashcode@flashtux.org>2018-04-07 13:20:58 +0200
commit6de98179bc87df4f2da38e36d64a03a1c0f9f623 (patch)
treeac3505c42a0297cf32fa966fc67f86a7825d8520 /src/plugins/tcl
parentea365cccbffb245285b33e5beeebac06743f7056 (diff)
downloadweechat-6de98179bc87df4f2da38e36d64a03a1c0f9f623.zip
api: add function string_format_size in scripting API
Diffstat (limited to 'src/plugins/tcl')
-rw-r--r--src/plugins/tcl/weechat-tcl-api.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/plugins/tcl/weechat-tcl-api.c b/src/plugins/tcl/weechat-tcl-api.c
index 1ad4c1151..7a1df5a7f 100644
--- a/src/plugins/tcl/weechat-tcl-api.c
+++ b/src/plugins/tcl/weechat-tcl-api.c
@@ -488,6 +488,24 @@ API_FUNC(string_mask_to_regex)
API_RETURN_STRING_FREE(result);
}
+API_FUNC(string_format_size)
+{
+ Tcl_Obj *objp;
+ char *result;
+ long size;
+
+ API_INIT_FUNC(1, "string_format_size", API_RETURN_EMPTY);
+ if (objc < 2)
+ API_WRONG_ARGS(API_RETURN_EMPTY);
+
+ if (Tcl_GetLongFromObj (interp, objv[1], &size) != TCL_OK)
+ API_WRONG_ARGS(API_RETURN_EMPTY);
+
+ result = weechat_string_format_size ((unsigned long long)size);
+
+ API_RETURN_STRING_FREE(result);
+}
+
API_FUNC(string_remove_color)
{
Tcl_Obj *objp;
@@ -5542,6 +5560,7 @@ void weechat_tcl_api_init (Tcl_Interp *interp)
API_DEF_FUNC(string_has_highlight);
API_DEF_FUNC(string_has_highlight_regex);
API_DEF_FUNC(string_mask_to_regex);
+ API_DEF_FUNC(string_format_size);
API_DEF_FUNC(string_remove_color);
API_DEF_FUNC(string_is_command_char);
API_DEF_FUNC(string_input_for_buffer);