diff options
author | Neels Hofmeyr <neels@hofmeyr.de> | 2019-02-01 05:38:44 +0100 |
---|---|---|
committer | Neels Hofmeyr <nhofmeyr@sysmocom.de> | 2019-02-04 16:43:57 +0000 |
commit | c1aa178c8bc71129d13b7b47cfce4449bcec0c2c (patch) | |
tree | 2fde734ccc5d79e9b68f73f6ca1c3d8d068beac3 /include | |
parent | 8d04f95d96f869543a99b18fd3326ea84e9f5366 (diff) |
vty api: add vty_out_va()
Provide a va_list type vty_out() variant, to be able to pass on variable
arguments from other function signatures to vty_out().
This will be used by Ibd6b1ed7f1bd6e1f2e0fde53352055a4468f23e5 for osmo_tdef.
Change-Id: Ie6e6f11a6b794f3cb686350c1ed678e4d5bbbb75
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocom/vty/vty.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/osmocom/vty/vty.h b/include/osmocom/vty/vty.h index c4cf707a..8d2e1b36 100644 --- a/include/osmocom/vty/vty.h +++ b/include/osmocom/vty/vty.h @@ -193,6 +193,7 @@ void vty_reset (void); struct vty *vty_new (void); struct vty *vty_create (int vty_sock, void *priv); int vty_out (struct vty *, const char *, ...) VTY_PRINTF_ATTRIBUTE(2, 3); +int vty_out_va(struct vty *vty, const char *format, va_list ap); int vty_out_newline(struct vty *); int vty_read(struct vty *vty); //void vty_time_print (struct vty *, int); |