diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-08-04 13:58:25 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-08-04 13:58:25 +0200 |
commit | 00b879962a09cfcbbd6e2e7629058a1fc41c5749 (patch) | |
tree | 27337815cd32e5e84bfdfd1d1d20accd0944941c /doc/en/weechat_plugin_api.en.txt | |
parent | 3c3d0754b18bed92db589cf506fe4d4d7031309a (diff) | |
download | weechat-00b879962a09cfcbbd6e2e7629058a1fc41c5749.zip |
api: add new function util_version_number
Diffstat (limited to 'doc/en/weechat_plugin_api.en.txt')
-rw-r--r-- | doc/en/weechat_plugin_api.en.txt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/en/weechat_plugin_api.en.txt b/doc/en/weechat_plugin_api.en.txt index 1a04def92..7b996fba7 100644 --- a/doc/en/weechat_plugin_api.en.txt +++ b/doc/en/weechat_plugin_api.en.txt @@ -2536,6 +2536,37 @@ weechat_printf (NULL, "date: %s", [NOTE] This function is not available in scripting API. +weechat_util_version_number +^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +_New in version 0.3.9._ + +Convert a string with WeeChat version to a number. + +Prototype: + +[source,C] +---------------------------------------- +int weechat_util_version_number (const char *version); +---------------------------------------- + +Arguments: + +* 'version': WeeChat version as string (example: "0.3.9" or "0.3.9-dev") + +C example: + +[source,C] +---------------------------------------- +version_number = weechat_util_version_number ("0.3.8"); /* == 0x00030800 */ +version_number = weechat_util_version_number ("0.3.9-dev"); /* == 0x00030900 */ +version_number = weechat_util_version_number ("0.3.9-rc1"); /* == 0x00030900 */ +version_number = weechat_util_version_number ("0.3.9"); /* == 0x00030900 */ +---------------------------------------- + +[NOTE] +This function is not available in scripting API. + [[sorted_lists]] Sorted lists ~~~~~~~~~~~~ |