X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fstr.h;h=306bd8ba89f110762dbf31f04abace081227b0cc;hb=8b37f66b3599f5809fbbb300d5cba5bb0557c184;hp=e017696cf60bdc1efc9dd12a744e3d9b7befeec5;hpb=fa1fffd5c789d9c7875fc3bdf556eaf017cf524e;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,