diff options
author | Thomas Adam <thomas@xteddy.org> | 2017-01-24 20:01:12 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2017-01-24 20:01:12 +0000 |
commit | f38a6bbd816533d01d14c8bbafbb51621e5e1326 (patch) | |
tree | a76cb484291fe739a9bf76e937dd5cc5cb1da124 /tmux.h | |
parent | f1282a683de191d00e6f71cc4a7d4c9646fff3de (diff) | |
parent | 61fce272ea60f5096711ee554c56aef9cca8c654 (diff) | |
download | rtmux-f38a6bbd816533d01d14c8bbafbb51621e5e1326.tar.gz rtmux-f38a6bbd816533d01d14c8bbafbb51621e5e1326.tar.bz2 rtmux-f38a6bbd816533d01d14c8bbafbb51621e5e1326.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -1481,6 +1481,7 @@ struct options_table_entry { const char *default_str; long long default_num; + const char *separator; const char *style; }; @@ -1618,17 +1619,20 @@ const struct options_table_entry *options_table_entry(struct options_entry *); struct options_entry *options_get_only(struct options *, const char *); struct options_entry *options_get(struct options *, const char *); void options_remove(struct options_entry *); +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 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 *); int options_isstring(struct options_entry *); const char *options_tostring(struct options_entry *, int); char *options_parse(const char *, int *); struct options_entry *options_parse_get(struct options *, const char *, int *, - int); + int); char *options_match(const char *, int *, int *); struct options_entry *options_match_get(struct options *, const char *, int *, - int, int *); + int, int *); const char *options_get_string(struct options *, const char *); long long options_get_number(struct options *, const char *); const struct grid_cell *options_get_style(struct options *, const char *); |