diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-04-24 10:00:09 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-04-24 10:06:54 +0200 |
commit | d16640130e65ed4af76d285a4339a0c200ee41b0 (patch) | |
tree | 1c78302f9726ac301af1f91e755ee863f6dcb17d /src/core/hook/wee-hook-command-run.c | |
parent | 95cf2aa9565233e73c356c7f3c83ea9815fa4dbc (diff) | |
download | weechat-d16640130e65ed4af76d285a4339a0c200ee41b0.zip |
core: add functions to get short description of hooks
Diffstat (limited to 'src/core/hook/wee-hook-command-run.c')
-rw-r--r-- | src/core/hook/wee-hook-command-run.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/hook/wee-hook-command-run.c b/src/core/hook/wee-hook-command-run.c index 80015629e..cb08b5352 100644 --- a/src/core/hook/wee-hook-command-run.c +++ b/src/core/hook/wee-hook-command-run.c @@ -36,6 +36,18 @@ /* + * Returns description of hook. + * + * Note: result must be freed after use. + */ + +char * +hook_command_run_get_description (struct t_hook *hook) +{ + return strdup (HOOK_COMMAND_RUN(hook, command)); +} + +/* * Hooks a command when it's run by WeeChat. * * Returns pointer to new hook, NULL if error. |