diff options
author | Thomas Adam <thomas@xteddy.org> | 2019-05-25 18:41:51 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2019-05-25 18:41:51 +0100 |
commit | 463bd8abb9248c31214c951221c3cf96dbffb56e (patch) | |
tree | ea7bd85988b7dedd4bb24c72743e3b473f3c8fa7 /tmux.h | |
parent | a69211aff5968f2bf71f0471cc67124dbd4597dd (diff) | |
parent | a65a6d62d19136e20ce6e6ec72d676a334dcc914 (diff) | |
download | rtmux-463bd8abb9248c31214c951221c3cf96dbffb56e.tar.gz rtmux-463bd8abb9248c31214c951221c3cf96dbffb56e.tar.bz2 rtmux-463bd8abb9248c31214c951221c3cf96dbffb56e.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1989,7 +1989,7 @@ int cmd_find_from_mouse(struct cmd_find_state *, int cmd_find_from_nothing(struct cmd_find_state *, int); /* cmd.c */ -void cmd_log_argv(int, char **, const char *); +void printflike(3, 4) cmd_log_argv(int, char **, const char *, ...); void cmd_prepend_argv(int *, char ***, char *); void cmd_append_argv(int *, char ***, char *); int cmd_pack_argv(int, char **, char *, size_t); @@ -2018,12 +2018,13 @@ void cmd_parse_empty(struct cmd_parse_input *); struct cmd_parse_result *cmd_parse_from_file(FILE *, struct cmd_parse_input *); struct cmd_parse_result *cmd_parse_from_string(const char *, struct cmd_parse_input *); +struct cmd_parse_result *cmd_parse_from_arguments(int, char **, + struct cmd_parse_input *); /* cmd-list.c */ struct cmd_list *cmd_list_new(void); void cmd_list_append(struct cmd_list *, struct cmd *); void cmd_list_move(struct cmd_list *, struct cmd_list *); -struct cmd_list *cmd_list_parse(int, char **, const char *, u_int, char **); void cmd_list_free(struct cmd_list *); char *cmd_list_print(struct cmd_list *, int); |