diff options
author | Anand Avati <avati@redhat.com> | 2014-03-29 04:54:16 -0700 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2014-04-29 14:51:30 -0700 |
commit | 540065ba490339ce173552751953485fa32ed0bf (patch) | |
tree | f733594ef5877072a72517b55e87d2e81005adfa /libglusterfs/src/strfd.h | |
parent | c61bc1f9e5874cb8380ec6398680fc71aea233b4 (diff) |
strfd: introduce strvprintf() API
variant of strprintf() which accepts va_list as parameter
instead of variable args (...)
Change-Id: I205acf3aaf5440890d5f9cad693c6a358a5d9218
BUG: 1089216
Signed-off-by: Anand Avati <avati@redhat.com>
Reviewed-on: http://review.gluster.org/7539
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
Diffstat (limited to 'libglusterfs/src/strfd.h')
-rw-r--r-- | libglusterfs/src/strfd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libglusterfs/src/strfd.h b/libglusterfs/src/strfd.h index e386c8432e4..a9e6eaa87bc 100644 --- a/libglusterfs/src/strfd.h +++ b/libglusterfs/src/strfd.h @@ -23,6 +23,8 @@ strfd_t *strfd_open(); int strprintf(strfd_t *strfd, const char *fmt, ...) __attribute__ ((__format__ (__printf__, 2, 3))); +int strvprintf(strfd_t *strfd, const char *fmt, va_list ap); + int strfd_close(strfd_t *strfd); #endif |