Add a way to create an empty arguments set.

This commit is contained in:
nicm
2021-08-20 17:53:54 +00:00
parent e463e8622d
commit 6cbc83c6a6
3 changed files with 15 additions and 4 deletions

1
tmux.h
View File

@ -2182,6 +2182,7 @@ int tty_keys_next(struct tty *);
/* arguments.c */
void args_set(struct args *, u_char, const char *);
struct args *args_create(void);
struct args *args_parse(const char *, int, char **);
void args_free(struct args *);
char *args_print(struct args *);