| 933 | /* acl_vstring_vsprintf_append - append format string, vsprintf-like interface */ |
| 934 | |
| 935 | ACL_VSTRING *acl_vstring_vsprintf_append(ACL_VSTRING *vp, const char *format, va_list ap) |
| 936 | { |
| 937 | acl_vbuf_print(&vp->vbuf, format, ap); |
| 938 | ACL_VSTRING_TERMINATE(vp); |
| 939 | return vp; |
| 940 | } |
| 941 | |
| 942 | /* acl_vstring_sprintf_prepend - format + prepend string, vsprintf-like interface */ |
| 943 |
no test coverage detected
searching dependent graphs…