diff options
author | 2020-05-16 15:40:04 +0000 | |
---|---|---|
committer | 2020-05-16 15:40:04 +0000 | |
commit | ef07bfa25cd23fca6b2249acab560e0f2823e64c (patch) | |
tree | e0d72e40932e8917e29d6da12276c08545d30033 /usr.bin/tmux/tmux.h | |
parent | Try to search the entire history first for up to 200 ms so a search (diff) | |
download | wireguard-openbsd-ef07bfa25cd23fca6b2249acab560e0f2823e64c.tar.xz wireguard-openbsd-ef07bfa25cd23fca6b2249acab560e0f2823e64c.zip |
Add formats for after hook command arguments.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 578c7cd0398..d0a1b5a251f 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.1031 2020/05/16 15:34:08 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.1032 2020/05/16 15:40:04 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -2088,6 +2088,8 @@ char *args_print(struct args *); char *args_escape(const char *); int args_has(struct args *, u_char); const char *args_get(struct args *, u_char); +u_char args_first(struct args *, struct args_entry **); +u_char args_next(struct args_entry **); const char *args_first_value(struct args *, u_char, struct args_value **); const char *args_next_value(struct args_value **); long long args_strtonum(struct args *, u_char, long long, long long, |