aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 2b083e44..a1ed1b46 100644
--- a/tmux.h
+++ b/tmux.h
@@ -50,6 +50,7 @@ struct mode_tree_data;
struct mouse_event;
struct options;
struct options_entry;
+struct options_array_item;
struct session;
struct tmuxpeer;
struct tmuxproc;
@@ -1642,8 +1643,12 @@ void options_array_clear(struct options_entry *);
const char *options_array_get(struct options_entry *, u_int);
int options_array_set(struct options_entry *, u_int, const char *,
int);
-int options_array_size(struct options_entry *, u_int *);
void options_array_assign(struct options_entry *, const char *);
+struct options_array_item *options_array_first(struct options_entry *);
+struct options_array_item *options_array_next(struct options_array_item *);
+u_int options_array_item_index(struct options_array_item *);
+const char *options_array_item_value(struct options_array_item *);
+int options_isarray(struct options_entry *);
int options_isstring(struct options_entry *);
const char *options_tostring(struct options_entry *, int, int);
char *options_parse(const char *, int *);