Function: strprintf
Section: programming/specific
C-Name: strprintf
Prototype: ss*
Help: strprintf(fmt,{x}*): returns a string built from the remaining
 arguments according to the format fmt.
Doc: returns a string built from the remaining arguments according to the
 format fmt. The format consists of ordinary characters (not \%), printed
 unchanged, and conversions specifications. See \kbd{printf}.
 \bprog
 ? dir = "/home/pari"; file = "aprcl"; n = 10;
 ? strprintf("%s/%s%ld.tex", dir, file, n)
 %2 = "/home/pari/aprcl10.tex"
 @eprog
Variant:
 The variadic version \fun{char *}{pari_sprintf}{const char *fmt, ...} is usually preferable.

Function: Strprintf
Section: programming/specific
C-Name: strprintf
Prototype: ss*
Obsolete: 2018-10-01
Help: Strprintf(fmt,{x}*): deprecated alias for strprintf.
Doc: deprecated alias for strprintf.
