X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fstr.h;h=306bd8ba89f110762dbf31f04abace081227b0cc;hb=8396e95f8f042b49bef6cc4ccb7fac05b6b85244;hp=e017696cf60bdc1efc9dd12a744e3d9b7befeec5;hpb=14c065be90af77f2661d4bf4d35f3ec943fd99bd;p=pspp diff --git a/src/libpspp/str.h b/src/libpspp/str.h index e017696cf6..306bd8ba89 100644 --- a/src/libpspp/str.h +++ b/src/libpspp/str.h @@ -228,8 +228,14 @@ void ds_put_cstr (struct string *, const char *); void ds_put_substring (struct string *, struct substring); void ds_put_vformat (struct string *st, const char *, va_list) PRINTF_FORMAT (2, 0); +void ds_put_c_vformat (struct string *st, const char *, va_list) + PRINTF_FORMAT (2, 0); + void ds_put_format (struct string *, const char *, ...) PRINTF_FORMAT (2, 3); +void ds_put_c_format (struct string *, const char *, ...) + PRINTF_FORMAT (2, 3); + char *ds_put_uninit (struct string *st, size_t incr); char *ds_splice_uninit (struct string *, size_t ofs, size_t old_len,